diff options
| author | Iuri de Silvio <iurisilvio@gmail.com> | 2017-01-10 10:14:11 -0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-10 10:14:11 -0200 |
| commit | 3d44bdec40f2572c985f763450aefce37b60380a (patch) | |
| tree | 70c65dc32dae377783ef18fb5736f53625e55cf3 | |
| parent | 6cb9a697460a725e563e630ab3c162dc8f8bd307 (diff) | |
| parent | 319505817a6bcdb7a418ab67410be8ac203e6309 (diff) | |
| download | tablib-3d44bdec40f2572c985f763450aefce37b60380a.tar.gz | |
Merge pull request #269 from kammala/master
Fixed classifiers in setup.py
| -rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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'], ) |
