We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cad6722 commit 0df9285Copy full SHA for 0df9285
2 files changed
Justfile
@@ -0,0 +1,25 @@
1
+default:
2
+ @just --choose
3
+
4
+setup:
5
+ uv sync
6
7
+build:
8
+ uv build
9
10
+test:
11
+ uv run pytest
12
13
+lint:
14
+ uv run ruff check
15
16
+format:
17
+ uv run ruff format
18
19
+check: lint test
20
+ uv run ruff format --check
21
22
+docs output="doc/html/":
23
+ uv run --group doc sphinx-build doc/ doc/html/
24
25
doc/.gitignore
@@ -1 +1,2 @@
_build/
+html/
0 commit comments