diff options
author | Bernat Gabor <bgabor8@bloomberg.net> | 2018-10-26 10:13:06 +0100 |
---|---|---|
committer | Bernat Gabor <bgabor8@bloomberg.net> | 2018-10-26 10:20:02 +0100 |
commit | a2f532da8f49c29aa427f1adbf6185eb3f4e224f (patch) | |
tree | 9c640fbc1bd2968c935f9ddabe9a8d2f72478fe4 /setup.py | |
parent | 181b311349bf6dc26692e0693c2e000da6c071f6 (diff) | |
download | virtualenv-docs.tar.gz |
Fix documentationdocs
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ) |