From a56ac018a87347c7e2bce8a77a39374670b27530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Wed, 21 Feb 2024 23:00:59 +0100 Subject: [PATCH] Prepare for PyPI pushising, bumb version. --- .gitignore | 3 +++ scripts/upload-to-pip.sh | 2 ++ setup.py | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5c8ee49..2fafd0e 100644 --- a/.gitignore +++ b/.gitignore @@ -139,3 +139,6 @@ 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 c364cbe..b5c55e4 100644 --- a/scripts/upload-to-pip.sh +++ b/scripts/upload-to-pip.sh @@ -5,6 +5,8 @@ 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 4ef44b3..1295538 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="org-rw", - version="0.0.1.dev1", + version="0.0.2", description="Library to de/serialize org-files and manipulate them.", author="kenkeiras", author_email="kenkeiras@codigoparallevar.com",