forked from wind-python/windpowerlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 955 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
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="windpowerlib",
version="0.2.2dev0",
description="Creating time series of wind power plants.",
url="http://github.com/wind-python/windpowerlib",
author="oemof developer group",
author_email="windpowerlib@rl-institut.de",
license="MIT",
packages=["windpowerlib"],
package_data={
"windpowerlib": [
os.path.join("data", "*.csv"),
os.path.join("oedb", "*.csv"),
]
},
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
zip_safe=False,
install_requires=["pandas >= 0.20.0", "requests"],
extras_require={
"dev": [
"pytest",
"jupyter",
"sphinx_rtd_theme",
"nbformat",
"numpy",
"matplotlib",
]
},
)