forked from OpenMDAO/dymos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from distutils.core import setup
from setuptools import find_packages
setup(name='dymos',
version='0.15.0',
description='Open-Source Optimization of Dynamic Multidisciplinary Systems',
url='https://github.com/OpenMDAO/dymos',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache 2.0',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
license='Apache License',
packages=find_packages(),
install_requires=[
'openmdao>=2.99',
'numpy>=1.14.1',
'scipy>=1.0.0',
'pep8',
'parameterized',
'sphinx',
'sphinxcontrib-bibtex',
'redbaron'
],
zip_safe=False,
package_data={'dymos.examples.aircraft_steady_flight.aero': ['data/CRM_aero_inputs.dat', 'data/CRM_aero_outputs.dat']},
entry_points={
'console_scripts': ['dymos=dymos.utils.command_line:dymos_cmd'],
}
)