Change build.sh to Makefile
This commit is contained in:
parent
7e0df73933
commit
f1ac52f50a
|
@ -0,0 +1,14 @@
|
||||||
|
dist: setup.cfg pyproject.toml
|
||||||
|
rm -rfv src/fsub.egg-info
|
||||||
|
rm -rfv dist
|
||||||
|
python3 -m build
|
||||||
|
|
||||||
|
upload: dist
|
||||||
|
python3 -m twine upload --repository pypi dist/*
|
||||||
|
|
||||||
|
check:
|
||||||
|
python3 -m unittest tests
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rfv tests/__pycache__
|
||||||
|
rm -rfv src/fsub/__pycache__
|
Loading…
Reference in New Issue