Skip to content

Commit

Permalink
adding makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
skelsec committed Apr 21, 2022
1 parent 874da14 commit bb2aaae
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
clean:
rm -f -r build/
rm -f -r dist/
rm -f -r *.egg-info
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +

publish: clean
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*

rebuild: clean
python3 setup.py install

build:
python3 setup.py install

0 comments on commit bb2aaae

Please sign in to comment.