mud/pyproject.toml
2026-02-07 09:53:18 -05:00

37 lines
593 B
TOML

[project]
name = "mudlib"
version = "0.1.0"
description = "a telnet mud engine"
requires-python = ">=3.12"
dependencies = [
"telnetlib3",
]
[dependency-groups]
dev = [
"ruff",
"pyright",
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mudlib"]
[tool.ruff]
src = ["src"]
line-length = 88
exclude = ["repos"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pyright]
pythonVersion = "3.12"
exclude = ["repos", ".venv"]
[tool.pytest.ini_options]
testpaths = ["tests"]