forked from OpenMDAO/dymos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (63 loc) · 2.33 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from distutils.core import setup
from setuptools import find_packages
# Setup optional dependencies
optional_dependencies = {
'docs': [
'mkdocs',
'mkdocs-material',
'pymdown-extensions',
'mkdocs-macros-plugin',
'mkdocs-bibtex',
'numpydoc>=0.9.1',
'redbaron',
'tabulate'
],
'test': [
'pep8',
'testflo>=1.3.6',
'matplotlib',
'numpydoc>=1.1',
]
}
# Add an optional dependency that concatenates all others
optional_dependencies['all'] = sorted([
dependency
for dependencies in optional_dependencies.values()
for dependency in dependencies
])
setup(name='dymos',
version='1.0.0',
description='Open-Source Optimization of Dynamic Multidisciplinary Systems',
long_description='''
Dymos is a framework for the simulation and optimization of dynamical systems within the OpenMDAO Multidisciplinary Analysis and Optimization environment.
Dymos leverages implicit and explicit simulation techniques to simulate generic dynamic systems of arbitary complexity.
The software has two primary objectives:
- Provide a generic ODE integration interface that allows for the analysis of dynamical systems.
- Allow the user to solve optimal control problems involving dynamical multidisciplinary systems.''',
long_description_content_type='text/markdown',
url='https://github.com/OpenMDAO/dymos',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'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(),
python_requires=">=3.6",
install_requires=[
'openmdao>=3.9.0',
'numpy>=1.14.1',
'scipy>=1.0.0'
],
extras_require=optional_dependencies,
zip_safe=False,
package_data={'dymos.examples.aircraft_steady_flight.aero': ['data/CRM_aero_inputs.dat', 'data/CRM_aero_outputs.dat']},
)