We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e82e8 commit 276f01dCopy full SHA for 276f01d
setup.py
@@ -1,6 +1,9 @@
1
import os
2
from setuptools import setup
3
4
+def read(fname):
5
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
6
+
7
setup(name='windpowerlib',
8
version='0.0.6',
9
description='Creating time series from wind power plants.',
@@ -11,6 +14,7 @@
11
14
packages=['windpowerlib'],
12
15
package_data={
13
16
'windpowerlib': [os.path.join('data', '*.csv')]},
17
+ long_description=read('README.rst'),
18
zip_safe=False,
19
install_requires=['numpy >= 1.7.0',
20
'pandas >= 0.13.1'])
0 commit comments