Simple make file for building and upload dist
This commit is contained in:
15
Makefile
Normal file
15
Makefile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
.PHONY: clean
|
||||||
|
binaries=dist build
|
||||||
|
|
||||||
|
dist:
|
||||||
|
python3 setup.py sdist
|
||||||
|
|
||||||
|
build:
|
||||||
|
python3 setup.py build
|
||||||
|
|
||||||
|
upload: clean dist
|
||||||
|
twine upload dist/*
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(binaries)
|
||||||
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
__version__ = '0.3'
|
__version__ = '0.3.1'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user