diff --git a/.gitignore b/.gitignore index 2fafd0e..5c8ee49 100644 --- a/.gitignore +++ b/.gitignore @@ -139,6 +139,3 @@ dmypy.json # Cython debug symbols cython_debug/ - -# Files for PyPI publishing -README.md diff --git a/scripts/upload-to-pip.sh b/scripts/upload-to-pip.sh index b5c55e4..c364cbe 100644 --- a/scripts/upload-to-pip.sh +++ b/scripts/upload-to-pip.sh @@ -5,8 +5,6 @@ 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/* diff --git a/setup.py b/setup.py index 1295538..4ef44b3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="org-rw", - version="0.0.2", + version="0.0.1.dev1", description="Library to de/serialize org-files and manipulate them.", author="kenkeiras", author_email="kenkeiras@codigoparallevar.com",