diff options
| author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2019-10-03 10:32:43 +0300 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2019-10-03 09:32:43 +0200 |
| commit | 923711d99a231ca64857dd0dc24a374c596a6c7b (patch) | |
| tree | 9955430f254d628865d216f309772861f5d9c5bc /setup.py | |
| parent | aac129db660b676da4b1e66637044a9665ba1b26 (diff) | |
| download | tablib-923711d99a231ca64857dd0dc24a374c596a6c7b.tar.gz | |
Add support for Python 3.7 and drop 3.4
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -61,11 +61,14 @@ setup( 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', tests_require=['pytest'], install_requires=install, extras_require={ |
