57c116ee9a
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.
15 lines
326 B
TOML
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"
|