20 lines
252 B
Makefile
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
|