|
21 | 21 | License :: OSI Approved :: MIT License |
22 | 22 | Programming Language :: Python |
23 | 23 | Programming Language :: Python :: 3 |
24 | | -Programming Language :: Python :: 3.4 |
25 | 24 | Programming Language :: Python :: 3.5 |
26 | 25 | Programming Language :: Python :: 3.6 |
27 | 26 | Programming Language :: Python :: 3.7 |
| 27 | +Programming Language :: Python :: 3.8 |
28 | 28 | Programming Language :: Python :: Implementation :: CPython |
29 | 29 | Topic :: Software Development :: Libraries :: Python Modules |
30 | 30 | """.splitlines()))) # noqa: E128 |
|
36 | 36 | EXTRAS_REQUIRE = { |
37 | 37 | # Windows also requires pyreadline to ensure tab completion works |
38 | 38 | ":sys_platform=='win32'": ['pyreadline'], |
39 | | - # Python 3.4 and earlier require contextlib2 for temporarily redirecting stderr and stdout |
40 | | - ":python_version<'3.5'": ['contextlib2', 'typing'], |
41 | 39 | # Extra dependencies for running unit tests |
42 | 40 | 'test': ["gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env |
43 | | - "mock ; python_version<'3.6'", # for python 3.5 and earlier we need the third party mock module |
| 41 | + "mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module |
44 | 42 | 'codecov', 'pytest', 'pytest-cov', 'pytest-mock'], |
45 | 43 | # development only dependencies: install with 'pip install -e .[dev]' |
46 | | - 'dev': ["mock ; python_version<'3.6'", # for python 3.5 and earlier we need the third party mock module |
| 44 | + 'dev': ["mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module |
47 | 45 | 'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'pylint', |
48 | 46 | 'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11', |
49 | 47 | ] |
|
63 | 61 | platforms=['any'], |
64 | 62 | packages=['cmd2'], |
65 | 63 | keywords='command prompt console cmd', |
66 | | - python_requires='>=3.4', |
| 64 | + python_requires='>=3.5', |
67 | 65 | setup_requires=SETUP_REQUIRES, |
68 | 66 | install_requires=INSTALL_REQUIRES, |
69 | 67 | extras_require=EXTRAS_REQUIRE, |
|
0 commit comments