Files
rotor_py_control/setup.py

24 lines
575 B
Python
Raw Normal View History

2023-03-15 15:38:14 -04:00
from distutils.core import setup
from os.path import isdir
from itertools import product
# Gather our flightsim and any projXX packages that happen to exist.
2023-12-15 11:00:30 -05:00
all_packages = ['rotorpy']
2023-03-15 15:38:14 -04:00
packages = list(filter(isdir, all_packages))
setup(
name='rotorpy',
packages=packages,
version='1.1.0',
2023-03-15 15:38:14 -04:00
install_requires=[
'cvxopt',
2023-12-15 11:00:30 -05:00
'matplotlib',
2023-03-15 15:38:14 -04:00
'filterpy == 1.4.5',
'numpy',
'scipy',
'pandas',
'ndsplines',
2023-12-12 14:35:47 -05:00
'timeout_decorator',
'tqdm',
2023-12-20 13:31:51 -05:00
'gymnasium'])