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:
Charlie Marsh
2024-02-22 19:53:45 -05:00
committed by GitHub
parent 1103298e6c
commit aa73a4f0ea
19 changed files with 392 additions and 35 deletions

View File

@@ -0,0 +1,2 @@
# Artifacts from the build process.
*.egg-info/

View 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"]

View File

@@ -0,0 +1,2 @@
def a():
pass