mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 10:48:32 +00:00
21 lines
435 B
TOML
21 lines
435 B
TOML
[project]
|
|
name = "knot_benchmark"
|
|
version = "0.0.1"
|
|
description = "Package for running end-to-end Red Knot benchmarks"
|
|
requires-python = ">=3.12"
|
|
dependencies = ["mypy", "pyright"]
|
|
|
|
[project.scripts]
|
|
benchmark = "benchmark.run:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/benchmark"]
|
|
|
|
[tool.ruff.lint]
|
|
ignore = [
|
|
"E501", # We use ruff format
|
|
]
|