summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index e06063f..bb17aab 100644
--- a/setup.py
+++ b/setup.py
@@ -119,5 +119,9 @@ setup(
packages=find_packages("src"),
package_data={"virtualenv_support": ["*.whl"]},
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
+ extras_require={
+ "testing": ["mock", "pytest >= 3.0.0, <4", "pytest-cov >= 2.5.1, <3", "pytest-timeout >= 1.3.0, <2"],
+ "docs": ["sphinx >= 1.8.0, < 2"],
+ },
**setup_params
)