2929
3030NAME = "pyexcel-io"
3131AUTHOR = "C.W."
32- VERSION = "0.5.19 "
32+ VERSION = "0.5.20 "
3333EMAIL = "info@pyexcel.org"
3434LICENSE = "New BSD"
3535DESCRIPTION = (
36- "A python library to read and write structured data in csv, zipped csv"
37- + "format and to/from databases"
36+ "A python library to read and write structured data in csv, zipped csv" +
37+ "format and to/from databases"
3838)
3939URL = "https://github.com/pyexcel/pyexcel-io"
40- DOWNLOAD_URL = "%s/archive/0.5.19 .tar.gz" % URL
40+ DOWNLOAD_URL = "%s/archive/0.5.20 .tar.gz" % URL
4141FILES = ["README.rst" , "CHANGELOG.rst" ]
4242KEYWORDS = [
4343 "python" ,
6060 "Programming Language :: Python :: 3.4" ,
6161 "Programming Language :: Python :: 3.5" ,
6262 "Programming Language :: Python :: 3.6" ,
63+
6364 "Programming Language :: Python :: 3.7" ,
65+
6466 "Programming Language :: Python :: 3.8" ,
65- "License :: OSI Approved :: BSD License" ,
66- "Programming Language :: Python :: Implementation :: PyPy" ,
67+
68+ 'License :: OSI Approved :: BSD License' ,
69+ 'Programming Language :: Python :: Implementation :: PyPy'
6770]
6871
69- INSTALL_REQUIRES = ["lml>=0.0.4" ]
72+ INSTALL_REQUIRES = [
73+ "lml>=0.0.4" ,
74+ ]
7075SETUP_COMMANDS = {}
7176
7277if PY26 :
73- INSTALL_REQUIRES .append (" ordereddict" )
78+ INSTALL_REQUIRES .append (' ordereddict' )
7479
7580PACKAGES = find_packages (exclude = ["ez_setup" , "examples" , "tests" ])
7681EXTRAS_REQUIRE = {
77- "xls" : [" pyexcel-xls>=0.5.0" ],
78- "xlsx" : [" pyexcel-xlsx>=0.5.0" ],
79- "ods" : [" pyexcel-ods3>=0.5.0" ],
82+ "xls" : [' pyexcel-xls>=0.5.0' ],
83+ "xlsx" : [' pyexcel-xlsx>=0.5.0' ],
84+ "ods" : [' pyexcel-ods3>=0.5.0' ],
8085}
8186# You do not need to read beyond this line
82- PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi" .format (
83- sys .executable
84- )
85- GS_COMMAND = (
86- "gs pyexcel-io v0.5.19 " + "Find 0.5.19 in changelog for more details"
87- )
88- NO_GS_MESSAGE = (
89- "Automatic github release is disabled. "
90- + "Please install gease to enable it."
91- )
87+ PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi" .format (sys .executable )
88+ GS_COMMAND = ("gs pyexcel-io v0.5.20 " +
89+ "Find 0.5.20 in changelog for more details" )
90+ NO_GS_MESSAGE = ("Automatic github release is disabled. " +
91+ "Please install gease to enable it." )
9292UPLOAD_FAILED_MSG = (
93- 'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND
94- )
93+ 'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND )
9594HERE = os .path .abspath (os .path .dirname (__file__ ))
9695
9796
@@ -134,7 +133,9 @@ def run(self):
134133 sys .exit ()
135134
136135
137- SETUP_COMMANDS .update ({"publish" : PublishCommand })
136+ SETUP_COMMANDS .update ({
137+ "publish" : PublishCommand
138+ })
138139
139140
140141def has_gease ():
@@ -145,7 +146,6 @@ def has_gease():
145146 """
146147 try :
147148 import gease # noqa
148-
149149 return True
150150 except ImportError :
151151 return False
@@ -213,5 +213,5 @@ def filter_out_test_code(file_handle):
213213 include_package_data = True ,
214214 zip_safe = False ,
215215 classifiers = CLASSIFIERS ,
216- cmdclass = SETUP_COMMANDS ,
216+ cmdclass = SETUP_COMMANDS
217217 )
0 commit comments