diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-07 12:45:36 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-07 12:45:36 -0500 |
commit | e6f251fd733236cfe0dbd9ebb9393dd487668c8e (patch) | |
tree | 6a585ef06bcae1938d8974a060f82f966db004f1 /setup.py | |
parent | 97b821f10913c82843c2278c70805e3d39cd2076 (diff) | |
parent | 97dd6f37482510cfc424049ff0b0369b79e34335 (diff) | |
download | cmd2-git-e6f251fd733236cfe0dbd9ebb9393dd487668c8e.tar.gz |
Merge branch 'master' into ansi_to_style
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,9 +29,9 @@ Programming Language :: Python :: Implementation :: CPython Topic :: Software Development :: Libraries :: Python Modules """.splitlines()))) # noqa: E128 -SETUP_REQUIRES = ['setuptools_scm'] +SETUP_REQUIRES = ['setuptools_scm >= 3.0.0'] -INSTALL_REQUIRES = ['pyperclip >= 1.6', 'colorama >= 0.3.7', 'attrs >= 16.3.0', 'wcwidth >= 0.1.7'] +INSTALL_REQUIRES = ['attrs >= 16.3.0', 'colorama >= 0.3.7', 'pyperclip >= 1.6', 'setuptools >= 34.4', 'wcwidth >= 0.1.7'] EXTRAS_REQUIRE = { # Windows also requires pyreadline to ensure tab completion works @@ -39,7 +39,7 @@ EXTRAS_REQUIRE = { # Extra dependencies for running unit tests 'test': ["gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in tox env "mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module - 'codecov', 'pytest', 'pytest-cov', 'pytest-mock'], + 'codecov', 'coverage', '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', 'flake8', |