org-rw/scripts/upload-to-pip.sh
Sergio Martínez Portela a56ac018a8
Some checks failed
Testing / pytest (push) Successful in 25s
Testing / mypy (push) Failing after 30s
Testing / stability-extra-test (push) Successful in 22s
Prepare for PyPI pushising, bumb version.
2024-07-19 20:01:27 +02:00

13 lines
163 B
Bash

#!/bin/sh
set -eu
cd "`dirname $0`"
cd ..
pandoc README.org -o README.md # PyPI doesn't accept Org files
python setup.py sdist
twine upload --verbose dist/*