requests-http-signature/Makefile

24 lines
301 B
Makefile
Raw Normal View History

SHELL=/bin/bash
2017-08-22 02:02:39 +02:00
lint:
flake8
2022-04-19 20:39:09 +02:00
mypy requests_http_signature
2017-08-22 02:02:39 +02:00
test: lint
python ./test/test.py -v
2017-08-22 02:02:39 +02:00
init_docs:
cd docs; sphinx-quickstart
docs:
sphinx-build docs docs/html
2017-08-22 02:02:39 +02:00
install:
-rm -rf dist
python -m build
2017-08-22 02:02:39 +02:00
pip install --upgrade dist/*.whl
.PHONY: test lint release docs
2017-08-22 02:02:39 +02:00
include common.mk