From 9352d877fd0bd500508bc0b9b8ec9abac4535d4b Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Wed, 19 Sep 2018 12:25:36 +1000 Subject: [PATCH] Minor fixes to readme and setup 1) Add version badge 2) Remove inconsistent full stops 3) Add classifiers to setup --- README.rst | 10 ++++++---- setup.py | 7 ++++++- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 4b4ce7830..d9f0c5180 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -|pipeline status| |coverage report| |pypi| +|pipeline status| |coverage report| |pypi| |version| Tupak ===== @@ -7,8 +7,8 @@ Fulfilling all your gravitational wave dreams. - `Installation instructions <https://monash.docs.ligo.org/tupak/installation.html>`__ -- `Contributing <https://git.ligo.org/Monash/tupak/blob/master/CONTRIBUTING.md>`__. -- `Documentation <https://monash.docs.ligo.org/tupak/index.html>`__. +- `Contributing <https://git.ligo.org/Monash/tupak/blob/master/CONTRIBUTING.md>`__ +- `Documentation <https://monash.docs.ligo.org/tupak/index.html>`__ - `Issue tracker <https://git.ligo.org/Monash/tupak/issues>`__ We encourage you to contribute to the development via a merge request. For @@ -21,4 +21,6 @@ us directly. .. |coverage report| image:: https://monash.docs.ligo.org/tupak/coverage_badge.svg :target: https://monash.docs.ligo.org/tupak/htmlcov/ .. |pypi| image:: https://badge.fury.io/py/TUPAK.svg - :target: https://badge.fury.io/py/TUPAK + :target: https://pypi.org/project/TUPAK/ +.. |version| image:: https://img.shields.io/pypi/pyversions/tupak.svg + :target: https://pypi.org/project/TUPAK/ diff --git a/setup.py b/setup.py index d1fdf0711..f2ad18ff3 100644 --- a/setup.py +++ b/setup.py @@ -79,4 +79,9 @@ setup(name='tupak', 'scipy'], entry_points={'console_scripts': ['tupak_plot=cli_tupak.plot_multiple_posteriors:main'] - }) + }, + classifiers=[ + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.7", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent"]) -- GitLab