uv/scripts/editable-installs/setup_py_editable/setup.py
Charlie Marsh e5b0cf7f89
Add support for unnamed local directory requirements (#2571)
## Summary

For example: `cargo run pip install .`

The strategy taken here is to attempt to extract the package name from
the distribution without executing the PEP 517 build steps. We could
choose to do that in the future if this proves lacking, but it adds
complexity.

Part of: https://github.com/astral-sh/uv/issues/313.
2024-03-21 03:46:11 +00:00

9 lines
137 B
Python

from setuptools import setup
setup(
name="setup-py-editable",
version="0.0.1",
install_requires=[
"httpx",
],
)