Files
rotor_py_control/setup.py

23 lines
584 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.
all_packages = ['rotorpy', 'rotorpy.wind-dynamics']
packages = list(filter(isdir, all_packages))
setup(
name='rotorpy',
packages=packages,
2023-12-14 16:18:38 -05:00
version='1.0.1',
2023-03-15 15:38:14 -04:00
install_requires=[
'cvxopt',
'matplotlib == 3.2.2',
'filterpy == 1.4.5',
'numpy',
'scipy',
'pandas',
'ndsplines',
2023-12-12 14:35:47 -05:00
'timeout_decorator',
'tqdm'])