remove setuptools from setup.py install_requires

This commit is contained in:
bgme 2023-08-23 01:24:18 +08:00
parent 668140131b
commit 5bc16468cb
2 changed files with 2 additions and 1 deletions

View file

@ -15,6 +15,7 @@ DEPENDENCIES
- setuptools - setuptools
- tornado, > 3.1 - tornado, > 3.1
- pyinotify, tested with 0.9.4 - pyinotify, tested with 0.9.4
- pyalpm, tested with 0.10.6
NOTE NOTE
==== ====

View file

@ -7,7 +7,7 @@ setup(
name = 'archrepo2', name = 'archrepo2',
version = archrepo2.__version__, version = archrepo2.__version__,
packages = find_packages(), packages = find_packages(),
install_requires = ['tornado>2.4.1', 'pyinotify', 'pyalpm', 'setuptools'], install_requires = ['tornado>2.4.1', 'pyinotify', 'pyalpm'],
entry_points = { entry_points = {
'console_scripts': [ 'console_scripts': [
'archreposrv = archrepo2.archreposrv:main', 'archreposrv = archrepo2.archreposrv:main',