1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00

fix: Add missing pip dependency (#500)

This commit is contained in:
Timothée Mazzucotelli 2023-06-26 10:07:10 +02:00 committed by GitHub
parent 85e065e1ad
commit 3f520cdc18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,12 +9,12 @@ tests_require = [
"pytest>=2.3",
"tox",
"twine",
"pip>=7",
"passlib>=1.6",
"webtest",
]
setup_requires = ["setuptools", "setuptools-git >= 0.3", "wheel >= 0.25.0"]
install_requires = ["pip>=7"]
def read_file(rel_path: str):
@ -45,6 +45,7 @@ setup(
packages=["pypiserver"],
package_data={"pypiserver": ["welcome.html"]},
python_requires=">=3.6",
install_requires=install_requires,
setup_requires=setup_requires,
extras_require={"passlib": ["passlib>=1.6"], "cache": ["watchdog"]},
tests_require=tests_require,