We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe9949 commit 219ee73Copy full SHA for 219ee73
MANIFEST.in
@@ -1,6 +1,6 @@
1
include *.rst
2
include pyproject.toml
3
-include Makefile
+include justfile
4
include LICENSE
5
include .readthedocs.yaml
6
recursive-include docs *.rst
justfile
@@ -33,3 +33,9 @@ docs: devenv
33
SPHINXBUILD={{sphinxbuild}} make -e -C docs/ clean
34
SPHINXBUILD={{sphinxbuild}} make -e -C docs/ doctest
35
SPHINXBUILD={{sphinxbuild}} make -e -C docs/ html
36
+
37
+build: devenv
38
+ rm -rf build/ dist/
39
+ uv run python -m build
40
+ uv run twine check dist/*
41
+ uv run check-manifest
0 commit comments