Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit da5c719

Browse files
committed
update Makefile
1 parent b3f6ca5 commit da5c719

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

Makefile

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
publish:
2-
python setup.py sdist upload --sign
1+
all: clean test publish
2+
3+
clean:
4+
rm -rf dist/
5+
6+
test:
7+
python setup.py test
8+
9+
publish: clean
10+
python setup.py bdist_wheel --universal
11+
python3 setup.py bdist_wheel --universal
12+
gpg --detach-sign -a dist/*.whl
13+
twine upload dist/*

0 commit comments

Comments
 (0)