textgraphs / bin /push_pypi.sh
Paco Nathan
A new start
91eaff6
raw
history blame contribute delete
229 Bytes
#!/bin/bash -e -x
rm -rf dist build textgraphs.egg-info
python3 -m build
twine check dist/*
# this assumes the use of `~/.pypirc`
# https://packaging.python.org/en/latest/specifications/pypirc/
twine upload ./dist/* --verbose