forked from ebranlard/welib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.94 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
53
54
55
56
57
58
from setuptools import setup, find_packages
VERSION='1.0.0'
EXTRAS = {
'docs': {
'readthedocs-sphinx-ext>=0.5.15',
'Sphinx>=2.0',
'sphinxcontrib-napoleon>=0.7'
}
}
setup(
name='welib',
version=VERSION,
description='Wind Energy Library',
long_description="""
Wind energy library: suite of python tools for aero-servo-hydro-elasticity (aerodynanmics, controls, hydrodynamics, structure/elasticity) and wind energy.""",
long_description_content_type = 'text/markdown',
author='Emmanuel Branlard',
author_email='[email protected]',
url='http://github.com/ebranlard/welib/',
license='MIT',
python_requires=">=3.6",
packages=find_packages(exclude=["tests"]),
install_requires=[
'matplotlib',
'xlrd',
'numpy',
'pandas',
'chardet',
'scipy',
'sympy'
],
extras_require = EXTRAS,
include_package_date = True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Hydrology',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'
],
)