Publish to PyPI

This commit is contained in:
2022-11-11 23:07:41 +01:00
parent a7c9615c7a
commit 8818b0ddcd
8 changed files with 221 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
dist: clean setup.cfg pyproject.toml
python3.9 -m build
upload: dist
python3.9 -m twine upload --repository pypi dist/*
clean:
rm -rfv src/subprompt.egg-info
rm -rfv dist
rm -rfv src/subprompt/__pycache__