From 5bc16468cbd82a9d89534834807c0e6883afddfb Mon Sep 17 00:00:00 2001 From: bgme Date: Wed, 23 Aug 2023 01:24:18 +0800 Subject: [PATCH] remove setuptools from setup.py install_requires --- README.rst | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index be0040b..f63edf8 100644 --- a/README.rst +++ b/README.rst @@ -15,6 +15,7 @@ DEPENDENCIES - setuptools - tornado, > 3.1 - pyinotify, tested with 0.9.4 +- pyalpm, tested with 0.10.6 NOTE ==== diff --git a/setup.py b/setup.py index 2b5a9bd..9860ded 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name = 'archrepo2', version = archrepo2.__version__, packages = find_packages(), - install_requires = ['tornado>2.4.1', 'pyinotify', 'pyalpm', 'setuptools'], + install_requires = ['tornado>2.4.1', 'pyinotify', 'pyalpm'], entry_points = { 'console_scripts': [ 'archreposrv = archrepo2.archreposrv:main',