This commit is contained in:
spencerfolk
2023-03-15 15:38:14 -04:00
commit 4d7fca10e4
62 changed files with 5891 additions and 0 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
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,
version='0.1',
install_requires=[
'cvxopt',
'matplotlib == 3.2.2',
'filterpy == 1.4.5',
'numpy',
'scipy',
'pandas',
'ndsplines',
'timeout_decorator'])