Files
uv/scripts/editable-installs/black_editable/pyproject.toml
T
Charlie Marsh 57c116ee9a Move Black editable to flit backend (#1114)
I ran into a bug in PDM that's making it impossible to use the Black
example for extras: https://github.com/pdm-project/pdm/issues/2591.

I've confirmed that Flit handles it correctly.
2024-01-25 19:54:54 -05:00

15 lines
326 B
TOML

[project]
name = "black"
version = "0.1.0"
description = "Default template for a Flit project"
authors = [
{name = "konstin", email = "konstin@mailbox.org"},
]
dependencies = []
requires-python = ">=3.11,<3.13"
license = {text = "MIT"}
[build-system]
requires = ["flit_core>=3.4,<4"]
build-backend = "flit_core.buildapi"