Files
uv/scripts/benchmark/pyproject.toml
T

23 lines
392 B
TOML
Raw Normal View History

2024-07-28 17:37:57 -04:00
[project]
2024-07-28 18:03:52 -04:00
name = "benchmark"
2024-07-28 17:37:57 -04:00
version = "0.0.1"
description = "Benchmark package resolution tools"
requires-python = ">=3.11"
2024-07-28 17:37:57 -04:00
dependencies = [
"pdm",
"pip-tools",
"poetry",
"tomli",
"tomli_w",
"virtualenv",
"pipx",
2024-07-28 17:37:57 -04:00
]
[project.scripts]
resolver = "benchmark.resolver:main"
tools = "benchmark.tools:main"
2024-07-28 17:37:57 -04:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"