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