-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 817 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 817 Bytes
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="synthetic_power_curves",
version="0.0.1dev",
description="Creating synthetic wind turbine power curves.",
url="http://github.com/wind-python/windpowerlib",
author="oemof developer group",
author_email="windpowerlib@rl-institut.de",
license="MIT",
packages=["synthetic_power_curves"],
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
zip_safe=False,
install_requires=["pandas >= 0.20.0"],
extras_require={
"dev": [
"pytest",
"jupyter",
"sphinx_rtd_theme",
"nbformat",
"numpy",
"matplotlib",
]
},
)