subprompt/Makefile

11 lines
212 B
Makefile
Raw Normal View History

2022-11-11 17:07:41 -05:00
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__