★ wanayoo — archive 1999 https://github.com/wind-python/windpowerlib/blob/dev/setup.pyNouvelle recherche | Portail wanayoo
Skip to content
Permalink
dev
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
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",
]
},
)