Fixed classifiers in setup.py

moved classifiers from tuple to list(this allow to use setup.py upload command in python >= 3.5)
This commit is contained in:
kammala
2017-01-10 12:20:08 +03:00
committed by GitHub
parent 6cb9a69746
commit 319505817a
+4 -2
View File
@@ -73,7 +73,7 @@ setup(
url='http://python-tablib.org',
packages=packages,
license='MIT',
classifiers=(
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
@@ -87,6 +87,8 @@ setup(
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
),
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
tests_require=['pytest'],
)