-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
71 lines (69 loc) · 2.49 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
69
70
71
from distutils.core import setup
setup(name='openmdao',
version='1.7.4',
description="OpenMDAO v1 framework infrastructure",
long_description="""\
""",
classifiers=[
'Development Status :: 3 - 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.7.4',
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.examples',
'openmdao.examples.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'],
'openmdao.devtools': ['*.template', '*.html', '*.woff', '*.css', '*.js'],
'openmdao.util': ['*.html'],
},
install_requires=[
'six', 'numpydoc', 'networkx==1.11', 'numpy>=1.9.2',
'scipy', 'sqlitedict', 'pyparsing'
],
entry_points="""
[console_scripts]
wingproj=openmdao.devtools.wingproj:run_wing
webview=openmdao.devtools.webview:webview_argv
view_profile=openmdao.util.profile:prof_view
proftotals=openmdao.util.profile:prof_totals
profdump=openmdao.util.profile:prof_dump
"""
)