@@ -6,22 +6,33 @@ def read(fname):
66 return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
77
88
9- setup (name = 'windpowerlib' ,
10- version = '0.2.1dev' ,
11- description = 'Creating time series of wind power plants.' ,
12- url = 'http://github.com/wind-python/windpowerlib' ,
13- author = 'oemof developer group' ,
14- 15- license = 'MIT' ,
16- packages = ['windpowerlib' ],
17- package_data = {
18- 'windpowerlib' : [os .path .join ('data' , '*.csv' ),
19- os .path .join ('oedb' , '*.csv' )]},
20- long_description = read ('README.rst' ),
21- long_description_content_type = 'text/x-rst' ,
22- zip_safe = False ,
23- install_requires = ['pandas >= 0.20.0, < 0.26' ,
24- 'requests < 3.0' ],
25- extras_require = {
26- 'dev' : ['pytest' , 'jupyter' , 'sphinx_rtd_theme' , 'nbformat' ,
27- 'numpy' , 'matplotlib' ]})
9+ setup (
10+ name = "windpowerlib" ,
11+ version = "0.2.1dev" ,
12+ description = "Creating time series of wind power plants." ,
13+ url = "http://github.com/wind-python/windpowerlib" ,
14+ author = "oemof developer group" ,
15+ 16+ license = "MIT" ,
17+ packages = ["windpowerlib" ],
18+ package_data = {
19+ "windpowerlib" : [
20+ os .path .join ("data" , "*.csv" ),
21+ os .path .join ("oedb" , "*.csv" ),
22+ ]
23+ },
24+ long_description = read ("README.rst" ),
25+ long_description_content_type = "text/x-rst" ,
26+ zip_safe = False ,
27+ install_requires = ["pandas >= 0.20.0, < 0.26" , "requests < 3.0" ],
28+ extras_require = {
29+ "dev" : [
30+ "pytest" ,
31+ "jupyter" ,
32+ "sphinx_rtd_theme" ,
33+ "nbformat" ,
34+ "numpy" ,
35+ "matplotlib" ,
36+ ]
37+ },
38+ )
0 commit comments