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 b630cb1 commit 3adc6aeCopy full SHA for 3adc6ae
Makefile
@@ -24,10 +24,9 @@ clean: ## Remove non-source files.
24
sterile: clean ## Remove all non-controlled content, even if expensive.
25
-rm -rf .tox*
26
27
-SDIST_CMD = python setup.py sdist --formats=gztar
28
29
-kit:
30
- $(SDIST_CMD)
+kit: ## Make the source distribution.
+ python setup.py sdist --formats=gztar
31
32
-kit_upload:
33
- twine upload dist/*
+kit_upload: ## Upload the built distributions to PyPI.
+ twine upload --verbose dist/*
0 commit comments