-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.78 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
import re
from setuptools import setup
__version__ = re.findall(r"""__version__ = ["']+([0-9\.]*)["']+""",
open('om_devtools/__init__.py').read())[0]
setup_args = {
'name': 'om_devtools',
'version': __version__,
'description': 'Some low level OpenMDAO develoment tools',
'classifiers': [
'Development Status :: 4 - Beta',
'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.6',
'Programming Language :: Python :: Implementation :: CPython',
],
'keywords': ['openmdao', 'openmdao_commands'],
'entry_points': {
'openmdao_command': [
'dist_idxs=om_devtools.dist_idxs:_dist_idxs_setup',
'memtop=om_devtools.memtop:_memtop_setup',
'cprof=om_devtools.cprof:_cprof_setup',
'statprof=om_devtools.statprof.viewstatprof:_statprof_setup',
'run_notebook=om_devtools.notebook_utils:_run_notebook_setup',
'show_notebook=om_devtools.notebook_utils:_show_notebook_setup',
]
},
'license': 'Apache License, Version 2.0',
'packages': [
'om_devtools',
'om_devtools.statprof',
'om_devtools.test',
],
'package_data': {
'om_devtools.statprof': [
'static/lib/*.js',
'static/lib/*.css',
'templates/*.html',
],
},
'install_requires': [
'openmdao>=2.10',
'tornado',
],
}
setup(**setup_args)