diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-05 21:40:31 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-05 21:40:31 -0500 |
commit | b7c5946996a887b0b964c0112261c5ce6b0d89d5 (patch) | |
tree | 1eb620442583c405c71e8645d73e41dbf14a9e08 /setup.py | |
parent | c2ce4b0210531a4cec35b14c51395a91ff092b91 (diff) | |
download | cmd2-git-b7c5946996a887b0b964c0112261c5ce6b0d89d5.tar.gz |
Added minimum version of setuptools_scm and added dependency on setuptools
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 |