Skip to content

Commit

Permalink
Added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed Jul 17, 2022
1 parent 80211e5 commit 05f7c4d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.PHONY : all clean build upload

all: install clean

clean:
@rm -rf `find ./ -type d -name "*__pycache__"`
@rm -rf ./build/ ./dist/ ./coercer.egg-info/

install:
python3 setup.py install

build:
python3 setup.py sdist bdist_wheel

upload:
python3 setup.py sdist upload

0 comments on commit 05f7c4d

Please sign in to comment.