forked from JustinSGray/pyCycle_original_old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 763 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
#
# This file is autogenerated during plugin quickstart and overwritten during
# plugin makedist. DO NOT CHANGE IT if you plan to use plugin makedist to update
# the distribution.
#
from setuptools import setup, find_packages
kwargs = {'author': '',
'author_email': '',
'classifiers': ['Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
'description': '',
'download_url': '',
'include_package_data': True,
'install_requires': ['openmdao.main'],
'keywords': ['openmdao'],
'license': '',
'maintainer': '',
'maintainer_email': '',
'name': 'pycycle',
'package_data': {'pycycle': []},
'package_dir': {'': 'src'},
'packages': ['pycycle'],
'url': '',
'version': '0.1',
'zip_safe': False}
setup(**kwargs)