summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkammala <kamaevpp@gmail.com>2017-01-10 12:20:08 +0300
committerGitHub <noreply@github.com>2017-01-10 12:20:08 +0300
commit319505817a6bcdb7a418ab67410be8ac203e6309 (patch)
tree70c65dc32dae377783ef18fb5736f53625e55cf3 /setup.py
parent6cb9a697460a725e563e630ab3c162dc8f8bd307 (diff)
downloadtablib-319505817a6bcdb7a418ab67410be8ac203e6309.tar.gz
Fixed classifiers in setup.py
moved classifiers from tuple to list(this allow to use setup.py upload command in python >= 3.5)
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 56a8f6b..b4b2054 100755
--- a/setup.py
+++ b/setup.py
@@ -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'],
)