Initial Commit (tested training, testing, and TRT conversion)
This commit is contained in:
4
flightlib/build/.clang-format
Normal file
4
flightlib/build/.clang-format
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
DisableFormat: true
|
||||
SortIncludes: false
|
||||
---
|
||||
6
flightlib/build/.gitignore
vendored
Normal file
6
flightlib/build/.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
!.clang-format
|
||||
!setup.py
|
||||
15
flightlib/build/setup.py
Normal file
15
flightlib/build/setup.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from setuptools import setup, Extension
|
||||
|
||||
#
|
||||
setup(name='flightgym',
|
||||
version='0.0.1',
|
||||
author="Junjie Lu / Yunlong Song",
|
||||
author_email='lqzx1998@tju.edu.cn / song@ifi.uzh.ch',
|
||||
description="Flightmare: A Quadrotor Simulator",
|
||||
long_description='This project is modified based on Flightmare by Yunlong Song, Thanks for his excellent work!',
|
||||
packages=[''],
|
||||
package_dir={'': './'},
|
||||
package_data={'': ['flightgym.cpython-36m-x86_64-linux-gnu.so']},
|
||||
zip_fase=True,
|
||||
url=None,
|
||||
)
|
||||
Reference in New Issue
Block a user