forked from OpenMDAO/CADRE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 868 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
#
# CADRE setup
#
from setuptools import setup
kwargs = {'author': 'Kenneth T. Moore',
'author_email': '[email protected]',
'classifiers': ['Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
'description': 'Implementation of the CADRE CubeSat design problem for OpenMDAO 1.0 and higher',
'download_url': 'http://github.com/OpenMDAO/CADRE.git',
'include_package_data': True,
'install_requires': ['openmdao'],
'keywords': ['openmdao', 'CADRE'],
'license': 'Apache 2.0',
'maintainer': 'Kenneth T. Moore',
'maintainer_email': '[email protected]',
'name': 'CADRE',
'package_data': {'CADRE': ['src/CADRE/test/data1346.pkl']},
'package_dir': {'': 'src'},
'packages': ['CADRE', 'CADRE.test'],
'url': 'http://github.com/OpenMDAO/CADRE.git',
'version': '0.1',
'zip_safe': False}
setup(**kwargs)