mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-24 13:43:45 +00:00
26 lines
650 B
TOML
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"
|