next.py/Justfile
2024-11-05 14:57:38 +00:00

20 lines
252 B
Makefile

set dotenv-load := true
test:
python test.py
build:
rm -rf dist/*
python -m build
upload:
python -m twine upload dist/*
lint:
pyright .
coverage:
pyright --ignoreexternal --verifytypes next
docs:
cd docs && make html