diff --git a/scripts/upload-to-pip.sh b/scripts/upload-to-pip.sh new file mode 100644 index 0000000..c364cbe --- /dev/null +++ b/scripts/upload-to-pip.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -eu + +cd "`dirname $0`" +cd .. + +python setup.py sdist + +twine upload --verbose dist/* diff --git a/setup.py b/setup.py index c29363b..4ef44b3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="org-rw", - version="0.0.1", + version="0.0.1.dev1", description="Library to de/serialize org-files and manipulate them.", author="kenkeiras", author_email="kenkeiras@codigoparallevar.com",