aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-03-02 16:59:18 +0000
committerGravatar Chris Lovering <[email protected]>2025-03-02 16:59:18 +0000
commitec78f5ea668c7f4c7b0a57ba3006c37cc6989c0b (patch)
tree1595057385d57c84f83fbb686e80649ec9f86436 /pyproject.toml
parentAdd note of .venv location choice in dockerfile (diff)
Add back taskipy tasks for people who want to use those over make
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e4e3024..6852238 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -29,6 +29,7 @@ description = "King Arthur is a helper for the Python Discord DevOps team."
dev = [
"pre-commit==4.1.0",
"ruff==0.9.6",
+ "taskipy==1.14.1",
]
[project.optional-dependencies]
@@ -36,6 +37,12 @@ ldap = [
"bonsai<2.0.0,>=1.5.3",
]
+[tool.taskipy.tasks]
+start = "python -m arthur"
+lint = "pre-commit run --all-files"
+format = "ruff format arthur"
+precommit = "pre-commit install"
+
[tool.ruff]
target-version = "py313"
extend-exclude = [".cache"]