33 lines
633 B
TOML
33 lines
633 B
TOML
[project]
|
|
name = "untitled-cat-game"
|
|
version = "0.1.0"
|
|
description = "Untitled Cat Game"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"questionary>=2.1.1",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"basedpyright>=1.39.8",
|
|
"pytest>=9.1.1",
|
|
"ruff>=0.15.18",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
ignore = ["E501"] # hehe forEVER!... forEVER!... forEVER!...
|
|
|
|
[tool.basedpyright]
|
|
typeCheckingMode = "standard"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["untitled"] |