uv/scripts/editable-installs/black_editable/pyproject.toml
Charlie Marsh 7755f986c3
Support extras in editable requirements (#1113)
## Summary

This PR adds support for requirements like `-e .[d]`.

Closes #1091.
2024-01-26 12:07:51 +00:00

26 lines
650 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"}
[project.optional-dependencies]
colorama = ["colorama>=0.4.3"]
uvloop = ["uvloop>=0.15.2"]
d = [
"aiohttp>=3.7.4; sys_platform != 'win32' or implementation_name != 'pypy'",
"aiohttp>=3.7.4, !=3.9.0; sys_platform == 'win32' and implementation_name == 'pypy'",
]
jupyter = [
"ipython>=7.8.0",
"tokenize-rt>=3.2.0",
]
[build-system]
requires = ["flit_core>=3.4,<4"]
build-backend = "flit_core.buildapi"