summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-07-06 16:17:54 -0400
committerGitHub <noreply@github.com>2019-07-06 16:17:54 -0400
commite18013e7f6be6721531cde163ec4697eac247270 (patch)
tree90dd680110a1d26624e9329d361b4e82733568f9 /setup.py
parent42bf56f8334cddc0fe3423e98eba5dbc537a4dd8 (diff)
parent5f8599bbc3776bbef8b75ece564969a0a8754990 (diff)
downloadcmd2-git-e18013e7f6be6721531cde163ec4697eac247270.tar.gz
Merge pull request #710 from python-cmd2/pipenv
Add Pipfile to support Pipenv for development
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3319c82d..505b7bb0 100755
--- a/setup.py
+++ b/setup.py
@@ -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',
]
}