From f3bf1ae0f3cc150797d4afdcb9b4a1564871b9f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 25 Sep 2020 09:44:01 +0200 Subject: [PATCH] Remove unnecessary install_requires on setuptools Remove the explicit runtime dependency on setuptools. None of the packages installed by setuptools seem to be used by the package. While arguably the pytest entry point might require setuptools but then the dependency belongs (and is present) in pytest, especially that a future version may use a different entry point loader. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 23b11cc..55ceea2 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ ) install_requires = [ - 'setuptools', 'requests', 'psutil', 'pytest',