diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-06 12:05:34 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-01-06 12:05:34 -0500 |
commit | 5dac940a8d2bda8496b6e7168bb48e27df5ba563 (patch) | |
tree | 83af1f189c5e2921db343ffe7b2d7fe59575ab5a /setup.py | |
parent | 6b6809a394b1e0baffad46d7b91f61d77ece128d (diff) | |
parent | 3fc6388395020dd63cd15fd93252f05844927874 (diff) | |
download | cmd2-git-5dac940a8d2bda8496b6e7168bb48e27df5ba563.tar.gz |
Merge branch 'master' into categorize_dynamic
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 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 |