diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-10-05 18:57:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 18:57:22 -0400 |
commit | 52bbce0a938e3769d0814010245687c1473f7e5c (patch) | |
tree | 87e62fccd8fc57910113024bd323002cc05c5850 | |
parent | 5cd91a31d26c359c6f9f31823db6e503974dc7f2 (diff) | |
parent | 431b5aa5140743a2dc59b01c74b82dc6c9866db9 (diff) | |
download | cmd2-git-52bbce0a938e3769d0814010245687c1473f7e5c.tar.gz |
Merge pull request #1006 from mgorny/setuptools-dep
Remove unnecessary runtime dependency on setuptools
-rwxr-xr-x | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -31,14 +31,13 @@ Programming Language :: Python :: Implementation :: CPython Topic :: Software Development :: Libraries :: Python Modules """.splitlines()))) # noqa: E128 -SETUP_REQUIRES = ['setuptools_scm >= 3.0'] +SETUP_REQUIRES = ['setuptools >= 34.4', 'setuptools_scm >= 3.0'] INSTALL_REQUIRES = [ 'attrs >= 16.3.0', 'colorama >= 0.3.7', 'importlib_metadata>=1.6.0;python_version<"3.8"', 'pyperclip >= 1.6', - 'setuptools >= 34.4', 'wcwidth >= 0.1.7', ] |