forked from fzahle/BECASWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 728 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 728 Bytes
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
from setuptools import setup, find_packages
import platform
import sys
kwargs = {'author': '',
'author_email': '',
'classifiers': ['Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
'description': '',
'download_url': '',
'include_package_data': True,
'install_requires': ['oct2py'],
# 'keywords': ['openmdao'],
'license': '',
'maintainer': '',
'maintainer_email': '',
'name': 'becas_wrapper',
'packages': ['becas_wrapper'],
'dependency_links':['https://github.com/blink1073/oct2py/tarball/master#egg=oct2py'],
'url': '',
'version': '0.1',
'zip_safe': False}
if 'Windows' not in platform.platform():
kwargs['install_requires'].append('pexpect')
setup(**kwargs)