Skip to content

Commit

Permalink
Add makefile for easy releases
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Jun 27, 2021
1 parent b1085d8 commit 6b5dba4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.PHONY: release clean

clean:
rm -r build/ dist/ asgiref.egg-info/

release: clean
python3 -m build
python3 -m twine upload dist/*

0 comments on commit 6b5dba4

Please sign in to comment.