mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
8 lines
142 B
Python
8 lines
142 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
install_requires=[
|
|
"requests",
|
|
'importlib-metadata; python_version<"3.10"',
|
|
],
|
|
)
|