|
13 | 13 | tests_require = [dep.strip() for dep in file.readlines()] |
14 | 14 |
|
15 | 15 | setup(name='caniusepython3', |
16 | | - version='7.1.0', |
| 16 | + version='7.2.0', |
17 | 17 | description='Determine what projects are blocking you from porting to Python 3', |
18 | 18 | long_description=long_description, |
| 19 | + long_description_content_type='text/x-rst', |
19 | 20 | author='Brett Cannon', |
20 | 21 | author_email='brett@python.org', |
21 | 22 | url='https://github.com/brettcannon/caniusepython3', |
22 | 23 | packages=['caniusepython3', 'caniusepython3.test'], |
23 | 24 | include_package_data=True, |
24 | | - requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', |
| 25 | + requires_python='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', |
25 | 26 | install_requires=['distlib', 'setuptools', 'packaging', # Input flexibility |
26 | 27 | 'argparse', 'backports.functools_lru_cache', |
27 | 28 | 'futures ; python_version=="2.7"', |
|
39 | 40 | 'Programming Language :: Python :: 3.5', |
40 | 41 | 'Programming Language :: Python :: 3.6', |
41 | 42 | 'Programming Language :: Python :: 3.7', |
| 43 | + 'Programming Language :: Python :: 3.8', |
42 | 44 | ], |
43 | 45 | entry_points={ |
44 | 46 | 'console_scripts': [ |
|
0 commit comments