Skip to content

Commit 01c449e

Browse files
committedNov 24, 2017
update Makefile
1 parent 1065465 commit 01c449e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed
 

‎Makefile

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ test:
22
PYTHONPATH=. pytest tests
33

44
clean:
5-
find . -name '*.pyc' -o -name '*.so' -delete
5+
find . -name \*.pyc -delete
6+
find . -name \*.so -delete
67
find . -name __pycache__ -delete
7-
rm -rf .coverage build dist UNKNOWN.egg-info
8+
rm -rf .coverage build dist *.egg-info
9+
10+
build:
11+
python setup.py sdist bdist_wheel
12+
13+
upload:
14+
twine upload dist/*

0 commit comments

Comments
 (0)
Please sign in to comment.