24 lines
377 B
TOML
24 lines
377 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "bw-menu"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.10"
|
|
dependencies = ["pyyaml"]
|
|
|
|
[dependency-groups]
|
|
dev = ["pre-commit", "pyright"]
|
|
|
|
[project.scripts]
|
|
bw-menu = "bw_menu.__main__:main"
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
src = ["src"]
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|