Files
uv/scripts/editable-installs/poetry_editable/pyproject.toml
T
Charlie Marsh 5c4cecaa85 Allow URL requirements in editable installs (#1614)
## Summary

If an editable package declares a direct URL requirement, we currently
error since it's not considered an "allowed" requirement. We need to add
those URLs to the allow-list.

Closes https://github.com/astral-sh/uv/issues/1603.
2024-02-17 15:20:23 -05:00

14 lines
268 B
TOML

[tool.poetry]
name = "poetry-editable"
version = "0.1.0"
description = ""
authors = ["Astral Software Inc. <hey@astral.sh>"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"