Files
python-client-sdk/Justfile
T
2023-05-20 03:04:52 +01:00

21 lines
254 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 .
coverage:
pyright --ignoreexternal --verifytypes revolt
docs:
cd docs && make html