We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fdfb6e commit 67d5075Copy full SHA for 67d5075
.gitignore
@@ -23,6 +23,9 @@ __pycache__
23
# tox
24
/.tox
25
26
+# generated by pdoc
27
+/docs
28
+
29
##
30
## Miscellaneous
31
Justfile
@@ -21,10 +21,17 @@ fix: && _format fix-spelling
21
@# Failure to fix should not prevent formatting
22
-ruff check --fix src
-build: mypy && _test check-format
+build: mypy && doc _test check-format
# Build project
uv build
+# build project documentation with `pdoc`
+#
+# See website: https://pdoc.dev/
+doc:
32
+ @mkdir -p docs
33
+ PYTHONPATH=src ./pdoc/.venv/bin/pdoc --docformat=markdown -o docs techcable.orderedset
34
35
mypy:
36
uv run mypy src
37
0 commit comments