diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-05-25 12:35:24 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-05-25 12:35:24 -0400 |
commit | 4c67d3372db924e87be920d89aadecb946584b31 (patch) | |
tree | bf57a15570248a2e3fbfb058a817d6c743cc9167 /setup.py | |
parent | 0e4131ba2616bd33c9cb5e93105dbd6d511a71ab (diff) | |
parent | cad21a60fa92ebe4a7c177142d273f9f7497967b (diff) | |
download | cmd2-git-4c67d3372db924e87be920d89aadecb946584b31.tar.gz |
Merge branch 'master' into pyshell_readline
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -67,10 +67,13 @@ EXTRAS_REQUIRE = { ":sys_platform!='win32'": ['wcwidth'], # Python 3.4 and earlier require contextlib2 for temporarily redirecting stderr and stdout ":python_version<'3.5'": ['contextlib2', 'typing'], + # development only dependencies + # install with 'pip install -e .[dev]' + 'dev': [ + 'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme', + ] } -TESTS_REQUIRE = ['pytest', 'pytest-xdist'] - setup( name="cmd2", version=VERSION, @@ -87,5 +90,4 @@ setup( python_requires='>=3.4', install_requires=INSTALL_REQUIRES, extras_require=EXTRAS_REQUIRE, - tests_require=TESTS_REQUIRE, ) |