diff --git a/README.rst b/README.rst index a25f26f..db9e2ed 100644 --- a/README.rst +++ b/README.rst @@ -5,6 +5,10 @@ PRSW: Python RIPE Stat Wrapper :alt: Latest Version :target: https://pypi.python.org/pypi/prsw +.. image:: https://img.shields.io/pypi/pyversions/prsw + :alt: Supported Python Versions + :target: https://pypi.python.org/pypi/prsw + .. image:: https://github.com/jvoss/prsw/actions/workflows/tests.yml/badge.svg :alt: GitHub Actions Tests :target: https://github.com/jvoss/prsw/actions/workflows/tests.yml diff --git a/prsw/__init__.py b/prsw/__init__.py index 8fc354e..fe3fadf 100644 --- a/prsw/__init__.py +++ b/prsw/__init__.py @@ -11,4 +11,4 @@ from .ripe_stat import RIPEstat -__version__ = "0.1.1" +__version__ = "0.1.2" diff --git a/prsw/stat/__init__.py b/prsw/stat/__init__.py new file mode 100644 index 0000000..1c697a4 --- /dev/null +++ b/prsw/stat/__init__.py @@ -0,0 +1 @@ +"""PRSW Stat API models.""" diff --git a/setup.py b/setup.py index 030bc85..3686c6a 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ "Topic :: Utilities", ], description=( - "PRSW, the `Python RIPE Stat Wrapper`, is a python package that" + "PRSW, the Python RIPE Stat Wrapper, is a python package that" " simplifies access to the RIPE Stat public data API." ), extras_require=extras,