next.py/Justfile

21 lines
252 B
Makefile
Raw Permalink Normal View History

2024-11-05 17:57:38 +03:00
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