diff options
| author | Val Neekman <val@neekware.com> | 2021-04-30 15:33:34 -0400 |
|---|---|---|
| committer | Val Neekman <val@neekware.com> | 2021-04-30 15:33:34 -0400 |
| commit | 319559cb43f239ac0d3bc7b975a78059bf4a1086 (patch) | |
| tree | 8b8b97b04aac4e65e2cf0e86afa95ea301f60023 /setup.py | |
| parent | 3cc1069d37431efd366a0894067aa4c3293dca3e (diff) | |
| download | python-slugify-5.0.0.tar.gz | |
Add support for 3.9, drop support for 2.7,3.55.0.0support3.9
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -24,10 +24,7 @@ classifiers = [ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', @@ -67,7 +64,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.*', + python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*', classifiers=classifiers, entry_points={'console_scripts': ['slugify=slugify.__main__:main']}, ) |
