diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-07-05 20:58:11 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-07-05 20:58:11 -0400 |
commit | 92f8e08d9b6a9436fe8fd30b75e4192106b2d366 (patch) | |
tree | 5b9267eab1ab71fd0536e553e2a14b1d6fe39643 /setup.py | |
parent | 42bf56f8334cddc0fe3423e98eba5dbc537a4dd8 (diff) | |
download | cmd2-git-92f8e08d9b6a9436fe8fd30b75e4192106b2d366.tar.gz |
Add Pipfile to support Pipenv for development
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ EXTRAS_REQUIRE = { 'codecov', 'pytest', 'pytest-cov', 'pytest-mock'], # development only dependencies: install with 'pip install -e .[dev]' 'dev': ["mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module - 'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'pylint', + 'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'flake8', 'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11', ] } |