Spaces:
Sleeping
Sleeping
File size: 229 Bytes
91eaff6 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/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
|