Skip to content

Commit 9f188d7

Browse files
committed
v0.1.0 — Initial release
1 parent 57df050 commit 9f188d7

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

README.rst

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1-
.. image:: http://www.repostatus.org/badges/latest/wip.svg
2-
:target: http://www.repostatus.org/#wip
3-
:alt: Project Status: WIPInitial development is in progress, but there
4-
has not yet been a stable, usable release suitable for the public.
1+
.. image:: http://www.repostatus.org/badges/latest/active.svg
2+
:target: http://www.repostatus.org/#active
3+
:alt: Project Status: ActiveThe project has reached a stable, usable
4+
state and is being actively developed.
55

66
.. image:: https://travis-ci.org/jwodder/pypi-simple.svg?branch=master
77
:target: https://travis-ci.org/jwodder/pypi-simple
88

99
.. image:: https://codecov.io/gh/jwodder/pypi-simple/branch/master/graph/badge.svg
1010
:target: https://codecov.io/gh/jwodder/pypi-simple
1111

12+
.. image:: https://img.shields.io/pypi/pyversions/pypi-simple.svg
13+
:target: https://pypi.org/project/pypi-simple/
14+
1215
.. image:: https://img.shields.io/github/license/jwodder/pypi-simple.svg
1316
:target: https://opensource.org/licenses/MIT
1417
:alt: MIT License
1518

1619
`GitHub <https://github.com/jwodder/pypi-simple>`_
20+
| `PyPI <https://pypi.org/project/pypi-simple/>`_
1721
| `Issues <https://github.com/jwodder/pypi-simple/issues>`_
1822
1923
``pypi-simple`` is a client library for the Python Simple Repository API as
@@ -24,6 +28,14 @@ library also allows you to query package files for their project version,
2428
package type, file digests, ``requires_python`` string, and PGP signature URL.
2529

2630

31+
Installation
32+
============
33+
Just use `pip <https://pip.pypa.io>`_ (You have pip, right?) to install
34+
``pypi-simple`` and its dependencies::
35+
36+
pip install pypi-simple
37+
38+
2739
Example
2840
=======
2941

pypi_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Visit <https://github.com/jwodder/pypi-simple> for more information.
1212
"""
1313

14-
__version__ = '0.1.0.dev1'
14+
__version__ = '0.1.0'
1515
__author__ = 'John Thorvald Wodder II'
1616
__author_email__ = '[email protected]'
1717
__license__ = 'MIT'

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ keywords =
2323
pip
2424

2525
classifiers =
26-
Development Status :: 3 - Alpha
27-
#Development Status :: 4 - Beta
26+
Development Status :: 4 - Beta
2827
#Development Status :: 5 - Production/Stable
2928
Programming Language :: Python :: 2
3029
Programming Language :: Python :: 2.7

0 commit comments

Comments
 (0)