5
5
6
6
import versioneer
7
7
8
- NAME = ' pandas-datareader'
8
+ NAME = " pandas-datareader"
9
9
10
10
11
11
def readme ():
12
- with open (' README.rst' ) as f :
12
+ with open (" README.rst" ) as f :
13
13
return f .read ()
14
14
15
15
@@ -24,30 +24,30 @@ def readme():
24
24
version = versioneer .get_version (),
25
25
cmdclass = versioneer .get_cmdclass (),
26
26
description = "Data readers extracted from the pandas codebase,"
27
- "should be compatible with recent pandas versions" ,
27
+ "should be compatible with recent pandas versions" ,
28
28
long_description = readme (),
29
- license = ' BSD License' ,
30
- author = ' The PyData Development Team' ,
31
-
32
- url = ' https://github.com/pydata/pandas-datareader' ,
29
+ license = " BSD License" ,
30
+ author = " The PyData Development Team" ,
31
+
32
+ url = " https://github.com/pydata/pandas-datareader" ,
33
33
classifiers = [
34
- ' Development Status :: 4 - Beta' ,
35
- ' Environment :: Console' ,
36
- ' Intended Audience :: Science/Research' ,
37
- ' Operating System :: OS Independent' ,
38
- ' Programming Language :: Python' ,
39
- ' Programming Language :: Python :: 2' ,
40
- ' Programming Language :: Python :: 2.7' ,
41
- ' Programming Language :: Python :: 3' ,
42
- ' Programming Language :: Python :: 3.5' ,
43
- ' Programming Language :: Python :: 3.6' ,
44
- ' Programming Language :: Python :: 3.7' ,
45
- ' Topic :: Scientific/Engineering' ,
34
+ " Development Status :: 4 - Beta" ,
35
+ " Environment :: Console" ,
36
+ " Intended Audience :: Science/Research" ,
37
+ " Operating System :: OS Independent" ,
38
+ " Programming Language :: Python" ,
39
+ " Programming Language :: Python :: 2" ,
40
+ " Programming Language :: Python :: 2.7" ,
41
+ " Programming Language :: Python :: 3" ,
42
+ " Programming Language :: Python :: 3.5" ,
43
+ " Programming Language :: Python :: 3.6" ,
44
+ " Programming Language :: Python :: 3.7" ,
45
+ " Topic :: Scientific/Engineering" ,
46
46
],
47
- keywords = ' data' ,
47
+ keywords = " data" ,
48
48
install_requires = install_requires ,
49
- packages = find_packages (exclude = [' contrib' , ' docs' , ' tests*' ]),
50
- test_suite = ' tests' ,
49
+ packages = find_packages (exclude = [" contrib" , " docs" , " tests*" ]),
50
+ test_suite = " tests" ,
51
51
tests_require = tests_require ,
52
52
zip_safe = False ,
53
53
)
0 commit comments