mirror of
https://github.com/astral-sh/uv
synced 2026-01-20 21:10:10 -05:00
Add support for config_settings in PEP 517 hooks (#1833)
## Summary Adds `--config-setting` / `-C` (with a `--config-settings` alias for convenience) to the CLI. Closes https://github.com/astral-sh/uv/issues/1460.
This commit is contained in:
2
scripts/editable-installs/setuptools_editable/.gitignore
vendored
Normal file
2
scripts/editable-installs/setuptools_editable/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
# Artifacts from the build process.
|
||||
*.egg-info/
|
||||
13
scripts/editable-installs/setuptools_editable/pyproject.toml
Normal file
13
scripts/editable-installs/setuptools_editable/pyproject.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[project]
|
||||
name = "setuptools_editable"
|
||||
version = "0.1.0"
|
||||
description = "Default template for a setuptools project"
|
||||
authors = [
|
||||
{name = "konstin", email = "konstin@mailbox.org"},
|
||||
]
|
||||
dependencies = ["iniconfig"]
|
||||
requires-python = ">=3.11,<3.13"
|
||||
license = {text = "MIT"}
|
||||
|
||||
[project.optional-dependencies]
|
||||
anyio = ["anyio>=3.3.0"]
|
||||
@@ -0,0 +1,2 @@
|
||||
def a():
|
||||
pass
|
||||
Reference in New Issue
Block a user