Files
python-client-sdk/Justfile
T
2023-02-22 18:40:06 +00:00

21 lines
264 B
Makefile
Executable File

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