diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-24 11:50:02 -0400 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-24 13:14:07 -0400 |
commit | d7764996e4e08faefaf3564fa71c19751847b55f (patch) | |
tree | 94345534436cfffd884689807c3070e07797ce11 /setup.py | |
parent | ee54678185234f01d3de6a6334f30c9bb3417783 (diff) | |
download | markdown-d7764996e4e08faefaf3564fa71c19751847b55f.tar.gz markdown-d7764996e4e08faefaf3564fa71c19751847b55f.tar.bz2 markdown-d7764996e4e08faefaf3564fa71c19751847b55f.zip |
Add support for PY37 and PYPY3.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,6 +56,7 @@ setup( maintainer_email='waylan.limberg@icloud.com', license='BSD License', packages=['markdown', 'markdown.extensions'], + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', entry_points={ 'console_scripts': [ '%s = markdown.__main__:run' % SCRIPT_NAME, @@ -89,11 +90,10 @@ setup( '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', 'Topic :: Communications :: Email :: Filters', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', 'Topic :: Internet :: WWW/HTTP :: Site Management', |