subprompt/Makefile

11 lines
212 B
Makefile

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__