Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gouline committed Dec 12, 2019
1 parent 37d0690 commit 02fa7be
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.PHONY: all build check clean dev-requirements

all: build

build: clean
python3 setup.py sdist bdist_wheel

check: build
twine check dist/*

upload: check
twine upload dist/*

clean:
rm -rf build dist

dev-requirements:
pip3 install -r dev-requirements.txt

0 comments on commit 02fa7be

Please sign in to comment.