From e83f3c7f729d0c325c986abaedfa20ddf798cac7 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Thu, 25 Feb 2021 23:04:59 +0100 Subject: [PATCH 1/3] Fix long description and coverage. --- codecov.yml | 2 +- setup.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/codecov.yml b/codecov.yml index 996ab44..e6cec4d 100644 --- a/codecov.yml +++ b/codecov.yml @@ -23,4 +23,4 @@ ignore: - ".tox/**/*" - "setup.py" - "versioneer.py" - - "src/pytask_parallel/_version.py" + - "src/pytask_latex/_version.py" diff --git a/setup.py b/setup.py index 08425b8..a1ce05d 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,18 @@ +from pathlib import Path + from setuptools import find_packages from setuptools import setup import versioneer +README = Path("README.rst").read_text() + PROJECT_URLS = { "Documentation": "https://github.com/pytask-dev/pytask-latex", "Github": "https://github.com/pytask-dev/pytask-latex", "Tracker": "https://github.com/pytask-dev/pytask-latex/issues", - "Changelog": "https://github.com/pytask-dev/pytask-latex/blob/main/" "CHANGES.rst", + "Changelog": "https://github.com/pytask-dev/pytask-latex/blob/main/CHANGES.rst", } @@ -17,6 +21,8 @@ version=versioneer.get_version(), cmd_class=versioneer.get_cmdclass(), description="Compile LaTeX documents with pytask.", + long_description=README, + long_description_content_type="text/x-rst", author="Tobias Raabe", author_email="raabe@posteo.de", python_requires=">=3.6", From cd721babcfca7c5d03c986912f5dced83bcb2497 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Thu, 25 Feb 2021 23:09:13 +0100 Subject: [PATCH 2/3] Add license shield. --- README.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.rst b/README.rst index 448cbe5..4e8e4d0 100644 --- a/README.rst +++ b/README.rst @@ -12,6 +12,9 @@ .. image:: https://anaconda.org/pytask/pytask-latex/badges/platforms.svg :target: https://anaconda.org/pytask/pytask-latex +.. image:: https://img.shields.io/pypi/l/pytask-latex + :alt: PyPI - License + .. image:: https://github.com/pytask-dev/pytask-latex/workflows/Continuous%20Integration%20Workflow/badge.svg?branch=main :target: https://github.com/pytask-dev/pytask-latex/actions?query=branch%3Amain From 765849c6f645e2c0d3449f9a27d574099c82a463 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 27 Feb 2021 12:06:15 +0100 Subject: [PATCH 3/3] to changes. --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index be0b0e4..5086c11 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,12 @@ all releases are available on `Anaconda.org `_. +0.0.12 - 2021-xx-xx +------------------- + +- :gh:`19` fixes some post-release issues. + + 0.0.11 - 2021-02-25 -------------------