-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
27 lines (25 loc) · 969 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="scada_data_analysis",
version="1.0.7",
author="Abiodun Olaoye",
author_email="[email protected]",
description="A set of tools for enabling wind energy data analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/abbey2017/wind-energy-analytics",
project_urls={
"Bug Tracker": "https://github.com/abbey2017/wind-energy-analytics/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=["test"]),
python_requires=">=3.6",
install_requires=['pandas', 'matplotlib'],
keywords = ['power-curve-filtering', 'scada-data-analytics', 'wind-energy'],
)