From c184dc66e0d041fc37f730077aade63105a59889 Mon Sep 17 00:00:00 2001 From: kotfu Date: Mon, 30 Jul 2018 20:43:55 -0600 Subject: Add all dev dependencies (even from tox.ini) --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e67e14b6..0425cf7e 100755 --- a/setup.py +++ b/setup.py @@ -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', ] } -- cgit v1.2.1