forked from OpenMDAO/dymos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.13 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
from distutils.core import setup
from setuptools import find_packages
setup(name='dymos',
version='0.11.1',
description='Open-Source Optimization of Dynamic Multidiscplinary 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 :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
license='Apache License',
packages=find_packages(),
install_requires=[
'openmdao>=2.3.0',
'numpy>=1.14.1',
'scipy>=0.19.1',
'six',
'pep8',
'parameterized',
'sphinx',
'sphinxcontrib-bibtex',
'redbaron'
],
zip_safe=False,
)