Skip to content

Commit

Permalink
(feat) add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
leonjza committed Mar 29, 2021
1 parent 3801d34 commit e695880
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
DIST_DIR := dist

default: clean sdist

clean:
$(RM) $(DIST_DIR)/*

sdist:
python setup.py sdist

testupload:
twine upload dist/* -r testpypi

upload:
twine upload dist/*

0 comments on commit e695880

Please sign in to comment.