Remove runtime dep 'setuptools' for Python < 3.8

> In recent versions of setuptools and Python, console-script entry
points are using stdlib importlib by default, thus setuptools is no
longer needed as a runtime dependency.

https://github.com/pypa/setuptools/pull/2197
https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v4730
https://docs.python.org/3/library/importlib.metadata.html
This commit is contained in:
Daniel M. Capella 2021-02-11 07:55:08 +00:00 committed by GitHub
parent 0fff4e29e4
commit 8f682481c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ include_package_data = True
install_requires =
pathspec >= 0.5.3
pyyaml
setuptools
setuptools; python_version < "3.8"
test_suite = tests