forked from OpenMDAO/OpenMDAO1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (59 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from distutils.core import setup
setup(name='openmdao',
version='1.6.3',
description="OpenMDAO v1 framework infrastructure",
long_description="""\
""",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'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 :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='optimization multidisciplinary multi-disciplinary analysis',
author='OpenMDAO Team',
author_email='[email protected]',
url='http://openmdao.org',
download_url='http://github.com/OpenMDAO/OpenMDAO/tarball/1.6.3',
license='Apache License, Version 2.0',
packages=[
'openmdao',
'openmdao.core',
'openmdao.core.test',
'openmdao.util',
'openmdao.util.test',
'openmdao.test',
'openmdao.test.test',
'openmdao.units',
'openmdao.units.test',
'openmdao.components',
'openmdao.components.test',
'openmdao.drivers',
'openmdao.drivers.test',
'openmdao.solvers',
'openmdao.solvers.test',
'openmdao.recorders',
'openmdao.recorders.test',
'openmdao.devtools',
'openmdao.surrogate_models',
'openmdao.surrogate_models.nn_interpolators',
'openmdao.surrogate_models.test'
],
package_data={'openmdao.units': ['unit_library.ini']},
install_requires=[
'six', 'numpydoc', 'networkx==1.9.1', 'numpy>=1.9.2', 'scipy', 'sqlitedict', 'pyparsing'
],
entry_points="""
[console_scripts]
wingproj=openmdao.devtools.wingproj:run_wing
webview=openmdao.devtools.d3graph:webview_argv
"""
)