From 431b5aa5140743a2dc59b01c74b82dc6c9866db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 1 Oct 2020 19:01:05 +0200 Subject: Remove unnecessary runtime dependency on setuptools The package does not seem to use setuptools or pkg_resources anywhere, and the dependency is probably leftover after migration to importlib.metadata. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4eb93cd2..123a045f 100755 --- a/setup.py +++ b/setup.py @@ -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', ] -- cgit v1.2.1