diff options
author | kotfu <kotfu@kotfu.net> | 2018-07-30 20:43:55 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-07-30 20:43:55 -0600 |
commit | c184dc66e0d041fc37f730077aade63105a59889 (patch) | |
tree | 93ca02ac5805dc1d81b87df1d673fc1da2426f46 /setup.py | |
parent | 82e06328c083269ed3405690b1b6b26dcda280a0 (diff) | |
download | cmd2-git-c184dc66e0d041fc37f730077aade63105a59889.tar.gz |
Add all dev dependencies (even from tox.ini)
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -73,8 +73,10 @@ EXTRAS_REQUIRE = { # development only dependencies # install with 'pip install -e .[dev]' 'dev': [ - 'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme', - 'sphinx-autobuild', 'invoke', 'twine>=1.11', + # for python 3.5 and earlier we need the third party mock module + "mock ; python_version<'3.6'", + 'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'pylint', + 'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11', ] } |