-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (39 loc) · 996 Bytes
/
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
from setuptools import setup
__version__ = "1.2"
__author__ = 'Peter Onodi'
setup(
name='omxdsm',
version=__version__,
description="XDSM viewer plugin for OpenMDAO",
keywords='openmdao_command openmdao xdsm optimization multidisciplinary multi-disciplinary',
author=__author__,
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
],
install_requires=[
'openmdao>=3.1.0',
'numpy',
'pyxdsm',
'xdsmjs',
'packaging',
],
extras_require={
'tex': [
'pytexit',
]
},
packages=[
'omxdsm',
],
entry_points={
'openmdao_command': [
'xdsm=omxdsm.cmd:_xdsm_setup'
],
},
include_package_data=True,
)