From eea233c35a060bf1a142e3e324121b2e6fa949c5 Mon Sep 17 00:00:00 2001 From: nnsnodnb Date: Wed, 6 Jun 2018 02:07:06 +0900 Subject: [PATCH] Add Makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c564e31 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +clean: + @ find . -name '*.py[co]' -delete + @ find . -name '__pycache__' -delete + @ rm -rf *.egg-info dist build .tox + +publish: + @ python setup.py sdist bdist_wheel + @ pip install twine + @ twine upload dist/* + @ pip uninstall twine -y + @ rm -rf ./upload ./dist