mirror of
https://github.com/astral-sh/uv
synced 2026-01-21 13:30:11 -05:00
(#17032) It's been bothering me that we have a bunch of stub packages and such in a `scripts` directory.
9 lines
142 B
Python
9 lines
142 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
install_requires=[
|
|
"requests",
|
|
'importlib-metadata; python_version<"3.10"',
|
|
],
|
|
)
|