forked from FUSED-Wind/fusedwind-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (51 loc) · 1.54 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import os
import sys
# from distutils.core import setup
from setuptools import setup
setup(name='fusedwind',
version="0.3",
description="",
long_description="""\
""",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache 2.0',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='',
author='',
author_email='',
url='http://fusedwind.org',
license='Apache License, Version 2.0',
packages=[
'fusedwind',
'fusedwind.core',
'fusedwind.lib',
'fusedwind.util',
'fusedwind.test',
'fusedwind.variables',
'fusedwind.turbine',
'fusedwind.turbine.test',
'fusedwind.plant_flow',
'fusedwind.plant_cost',
],
package_data={
'fusedwind.turbine.test': ['data/*',
'data_version_1/*',
'data_version_2/*'],
},
install_requires=[
'six', 'Sphinx', 'numpydoc', 'networkx',
],
entry_points= """
"""
)