forked from DTUWindEnergy/TOPFARM
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 1.24 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
#
# 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': 'Pierre-Elouan Rethore',
'author_email': '[email protected]',
'classifiers': ['Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering'],
'description': 'A wind plant layout optimization tool',
'download_url': 'https://github.com/DTUWindEnergy/TOPFARM.git',
'include_package_data': True,
'keywords': ['openmdao'],
'license': 'AGPL v3.0',
'maintainer': 'Pierre-Elouan Rethore',
'maintainer_email': '[email protected]',
'name': 'topfarm',
'package_data': {'topfarm': []},
'package_dir': {'': 'src'},
'packages': ['topfarm'],
'install_requires': ['openmdao.main', 'numpy', 'scipy', 'pandas', 'matplotlib', 'seaborn','fusedwind','pyopt', 'pyopt_driver'],
'dependency_links': ['git+http://github.com/FUSED-Wind/[email protected]#egg=fusedwind',
'svn+http://svn.pyopt.org/tags/release-1.1.0#egg=pyopt',
'git+http://github.com/OpenMDAO-Plugins/[email protected]#egg=pyopt_driver'],
'version': '0.1.0',
'zip_safe': False}
setup(**kwargs)