Skip to content

Commit

Permalink
DEV: Add Makefile for easy package uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Apr 7, 2022
1 parent 3ef8084 commit 0fba59b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
@@ -0,0 +1,15 @@
maint:
pre-commit autoupdate
pip-compile -U requirements/ci.in
pip-compile -U requirements/dev.in

upload:
make clean
python setup.py sdist bdist_wheel && twine upload -s dist/*

clean:
python setup.py clean --all
pyclean .

test:
pytest Tests/tests.py Tests --cov --cov-report term-missing -vv --cov-report html

0 comments on commit 0fba59b

Please sign in to comment.