-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
41 lines (37 loc) · 1.05 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
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.3dev",
description="Creating time series of wind power plants.",
url="http://github.com/wind-python/windpowerlib",
author="oemof developer group",
author_email="[email protected]",
license="MIT",
packages=["windpowerlib"],
package_data={
"windpowerlib": [
os.path.join("data", "*.csv"),
os.path.join("data", "default_turbine_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", "requests"],
extras_require={
"dev": [
"jupyter",
"matplotlib",
"nbsphinx",
"numpy",
"pytest",
"pytest-notebook",
"sphinx >= 1.4",
"sphinx_rtd_theme",
]
},
)