diff options
author | Val Neekman <un33kvu@gmail.com> | 2019-10-20 13:39:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 13:39:51 -0400 |
commit | 76f327216bc52adc6115eb6d1483405958810c5c (patch) | |
tree | e5eb48e5627724062166eeb6e2898f6c0acfd0be /setup.py | |
parent | b9db1bc87e3b19c5c63ab7a00b19685b7996de5d (diff) | |
download | python-slugify-4.0.0.tar.gz |
Drop support for old python - cleanup - up version (#88)4.0.0
* Drop support for EOL Python 2.6 and 3.2-2.4 (#87)
* Drop support for EOL Python 2.6 and 3.2-3.4
* Remove duplicate class
* Upgrade Python syntax with pyupgrade
* Upgrade PyPy and PyPy3 and test 3.8 beta
* up version
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -24,12 +24,9 @@ classifiers = [ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - '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', 'Programming Language :: Python :: 3.7', @@ -68,6 +65,7 @@ setup( packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES), install_requires=install_requires, extras_require=extras_require, + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', classifiers=classifiers, entry_points={'console_scripts': ['slugify=slugify.slugify:main']}, ) |