mirror of
https://github.com/stoatchat/python-client-sdk.git
synced 2026-07-01 20:44:04 -04:00
21 lines
254 B
Makefile
Executable File
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
|