forked from kenkeiras/org-rw
11 lines
98 B
Bash
11 lines
98 B
Bash
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd "`dirname $0`"
|
|
cd ..
|
|
|
|
python setup.py sdist
|
|
|
|
twine upload --verbose dist/*
|