diff --git a/README.rst b/README.rst index 723c0d2..60f83f8 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ -.. image:: http://www.repostatus.org/badges/latest/wip.svg - :target: http://www.repostatus.org/#wip - :alt: Project Status: WIP — Initial development is in progress, but there - has not yet been a stable, usable release suitable for the public. +.. image:: http://www.repostatus.org/badges/latest/active.svg + :target: http://www.repostatus.org/#active + :alt: Project Status: Active — The project has reached a stable, usable + state and is being actively developed. .. image:: https://travis-ci.com/jwodder/entry-points-txt.svg?branch=master :target: https://travis-ci.com/jwodder/entry-points-txt @@ -9,11 +9,15 @@ .. image:: https://codecov.io/gh/jwodder/entry-points-txt/branch/master/graph/badge.svg :target: https://codecov.io/gh/jwodder/entry-points-txt +.. image:: https://img.shields.io/pypi/pyversions/entry-points-txt.svg + :target: https://pypi.org/project/entry-points-txt/ + .. image:: https://img.shields.io/github/license/jwodder/entry-points-txt.svg :target: https://opensource.org/licenses/MIT :alt: MIT License `GitHub `_ +| `PyPI `_ | `Issues `_ ``entry-points-txt`` provides functions for reading & writing @@ -28,7 +32,7 @@ Installation `_ for Python 3 (You have pip, right?) to install ``entry-points-txt``:: - python3 -m pip install git+https://github.com/jwodder/entry-points-txt.git + python3 -m pip install entry-points-txt API diff --git a/setup.cfg b/setup.cfg index 5f55f65..3d836cc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,8 +15,7 @@ keywords = entry_points.txt classifiers = - Development Status :: 3 - Alpha - #Development Status :: 4 - Beta + Development Status :: 4 - Beta #Development Status :: 5 - Production/Stable Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 diff --git a/src/entry_points_txt/__init__.py b/src/entry_points_txt/__init__.py index f626508..b9c8777 100644 --- a/src/entry_points_txt/__init__.py +++ b/src/entry_points_txt/__init__.py @@ -10,7 +10,7 @@ Visit for more information. """ -__version__ = '0.1.0.dev1' +__version__ = '0.1.0' __author__ = 'John Thorvald Wodder II' __author_email__ = 'entry-points-txt@varonathe.org' __license__ = 'MIT'