forked from NREL/flasc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (56 loc) · 1.56 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
59
60
61
62
63
64
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'floris>=3.0',
'feather-format>=0.4.1',
'matplotlib>=3',
'numpy==1.21',
'numba>=0.55.0',
'openoa>=2.0.1',
'pandas>=1.3.0,<=1.4.0',
'pyproj>=2.1',
'pytest>=4',
'SALib>=1.4.0.2',
'scipy>=1.1',
'sqlalchemy>=1.4.23',
'streamlit>=0.89.0',
'tkcalendar>=1.6.1',
]
setup_requirements = [
# Placeholder
]
test_requirements = [
# Placeholder
]
setup(
name='flasc',
version='1.0',
description="FLASC provides a rich suite of analysis tools for SCADA data filtering & analysis, wind farm model validation, field experiment design, and field experiment monitoring.",
long_description=readme,
author="Bart Doekemeijer",
author_email='bart.doekemeijer@nrel.gov',
url='https://github.com/NREL/flasc',
packages=find_packages(include=['flasc']),
entry_points={
'console_scripts': [
'flasc=flasc.cli:main'
]
},
include_package_data=True,
install_requires=requirements,
license="Apache Software License 2.0",
zip_safe=False,
keywords='flasc',
classifiers=[
'Development Status :: Release',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
test_suite='tests',
tests_require=test_requirements,
setup_requires=setup_requirements,
)