Skip to content

Commit 3adc6ae

Browse files
committed
build: kit building targets
1 parent b630cb1 commit 3adc6ae

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Makefile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ clean: ## Remove non-source files.
2424
sterile: clean ## Remove all non-controlled content, even if expensive.
2525
-rm -rf .tox*
2626

27-
SDIST_CMD = python setup.py sdist --formats=gztar
2827

29-
kit:
30-
$(SDIST_CMD)
28+
kit: ## Make the source distribution.
29+
python setup.py sdist --formats=gztar
3130

32-
kit_upload:
33-
twine upload dist/*
31+
kit_upload: ## Upload the built distributions to PyPI.
32+
twine upload --verbose dist/*

0 commit comments

Comments
 (0)