Compare commits

...

2 Commits

Author SHA1 Message Date
cca2a9ec1c Merge branch 'develop' into feat/improvements 2024-07-20 15:53:55 +00:00
Sergio Martínez Portela
a56ac018a8 Prepare for PyPI pushising, bumb version. 2024-07-19 20:01:27 +02:00
3 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View File

@ -139,3 +139,6 @@ dmypy.json
# Cython debug symbols # Cython debug symbols
cython_debug/ cython_debug/
# Files for PyPI publishing
README.md

View File

@ -5,6 +5,8 @@ set -eu
cd "`dirname $0`" cd "`dirname $0`"
cd .. cd ..
pandoc README.org -o README.md # PyPI doesn't accept Org files
python setup.py sdist python setup.py sdist
twine upload --verbose dist/* twine upload --verbose dist/*

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="org-rw", name="org-rw",
version="0.0.1.dev1", version="0.0.2",
description="Library to de/serialize org-files and manipulate them.", description="Library to de/serialize org-files and manipulate them.",
author="kenkeiras", author="kenkeiras",
author_email="kenkeiras@codigoparallevar.com", author_email="kenkeiras@codigoparallevar.com",