org-rw/scripts/upload-to-pip.sh
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/*