We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a933c commit 23144c2Copy full SHA for 23144c2
Makefile
@@ -1,8 +1,15 @@
1
clean:
2
rm -rf src/syntactes/__pycache__ src/syntactes/tests/__pycache__
3
+ rm -rf dist src/syntactes.egg-info
4
5
test:
6
python -m unittest discover -v src/syntactes/tests/
7
8
install-local-package:
9
pip install -e .
10
+
11
+build-package:
12
+ python -m build
13
14
+upload-package:
15
+ python -m twine upload --verbose -u '__token__' dist/*
0 commit comments