23 lines
584 B
Python
23 lines
584 B
Python
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='1.0.1',
|
|
install_requires=[
|
|
'cvxopt',
|
|
'matplotlib == 3.2.2',
|
|
'filterpy == 1.4.5',
|
|
'numpy',
|
|
'scipy',
|
|
'pandas',
|
|
'ndsplines',
|
|
'timeout_decorator',
|
|
'tqdm'])
|