aboutsummaryrefslogtreecommitdiff
path: root/python/pyproject.toml
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-03-05 13:07:07 +0000
committertslil <tslil@posteo.de>2026-03-05 13:07:17 +0000
commit0d734cd4095c57be5c6a527adf49504ca1d14863 (patch)
treeba0ee668bd21b84d660d3a9123ebf5f70be4692d /python/pyproject.toml
parent00e03d8fb65119e736dae4db8335e1ac67aac23e (diff)
Remove old python prototype
Diffstat (limited to 'python/pyproject.toml')
-rw-r--r--python/pyproject.toml44
1 files changed, 0 insertions, 44 deletions
diff --git a/python/pyproject.toml b/python/pyproject.toml
deleted file mode 100644
index 4b46e0f..0000000
--- a/python/pyproject.toml
+++ /dev/null
@@ -1,44 +0,0 @@
-[project]
-name = "rprt"
-version = "0.1.0"
-description = "Python implementation of the RPRT text editing language"
-requires-python = ">=3.12"
-license = {text = "GPL-3.0"}
-authors = [{name = "tslil clingman"}]
-dependencies = []
-
-[build-system]
-requires = ["hatchling"]
-build-backend = "hatchling.build"
-
-[tool.hatch.build.targets.wheel]
-packages = ["src"]
-
-[tool.pytest.ini_options]
-testpaths = ["tests"]
-pythonpath = ["src"]
-addopts = ["--cov=libpam", "--cov-report=term-missing"]
-
-[dependency-groups]
-dev = [
- "pyright>=1.1.406",
- "pytest>=8.4.2",
- "pytest-cov>=7.0.0",
- "ruff>=0.8.0",
- "vulture>=2.14",
-]
-
-[tool.ruff]
-line-length = 100
-
-[tool.ruff.lint]
-select = [
- "E", # pycodestyle errors
- "W", # pycodestyle warnings
- "F", # pyflakes
- "I", # isort (import sorting)
-]
-
-[tool.ruff.lint.isort]
-force-single-line = false
-lines-after-imports = 2