org-rw/scripts/upload-to-pip.sh

13 lines
163 B
Bash
Raw Normal View History

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