[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 [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"] [tool.pyright] pythonVersion = "3.12" [tool.pytest.ini_options] testpaths = ["tests"]