summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst18
-rw-r--r--howto.txt3
-rw-r--r--setup.py9
3 files changed, 24 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index ad8ace3..0a95e9f 100644
--- a/README.rst
+++ b/README.rst
@@ -8,7 +8,7 @@ Coverage.py
Code coverage testing for Python.
| |ci-status| |win-ci-status| |reqs| |codecov|
-| |kit| |downloads| |docs|
+| |kit| |format| |downloads| |versions| |status| |license| |docs|
Coverage.py measures code coverage, typically during test execution. It uses
the code analysis tools and tracing hooks provided in the Python standard
@@ -53,9 +53,21 @@ For details, see https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt.
.. |kit| image:: https://badge.fury.io/py/coverage.svg
:target: https://pypi.python.org/pypi/coverage
:alt: PyPI status
-.. |downloads| image:: https://img.shields.io/pypi/dm/coverage.svg
+.. |format| image:: https://img.shields.io/pypi/format/coverage.svg
:target: https://pypi.python.org/pypi/coverage
- :alt: Monthly PyPI downloads
+ :alt: Kit format
+.. |downloads| image:: https://img.shields.io/pypi/dd/coverage.svg
+ :target: https://pypi.python.org/pypi/coverage
+ :alt: Daily PyPI downloads
+.. |versions| image:: https://img.shields.io/pypi/pyversions/coverage.svg
+ :target: https://pypi.python.org/pypi/coverage
+ :alt: Python versions supported
+.. |status| image:: https://img.shields.io/pypi/status/coverage.svg
+ :target: https://pypi.python.org/pypi/coverage
+ :alt: Package stability
+.. |license| image:: https://img.shields.io/pypi/l/coverage.svg
+ :target: https://pypi.python.org/pypi/coverage
+ :alt: License
.. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master
:target: http://codecov.io/github/nedbat/coveragepy?branch=master
:alt: Coverage!
diff --git a/howto.txt b/howto.txt
index 0034e62..3b48a11 100644
--- a/howto.txt
+++ b/howto.txt
@@ -4,9 +4,10 @@
- Windows
- Ubuntu
- Mac
- - Pythons 2.6, 2.7, 3.3, 3.4
+ - Pythons 2.6, 2.7, 3.3, 3.4, 3.5
- Version number in coverage/version.py
- 3.1a1, 3.1b1, 3.1c1, 3.1
+- Version number in classifiers in setup.py
- Copyright date in NOTICE.txt
- Update CHANGES.txt, including release date.
- Update README.rst, including "New in x.y:"
diff --git a/setup.py b/setup.py
index a2e4acf..010b5b7 100644
--- a/setup.py
+++ b/setup.py
@@ -22,8 +22,13 @@ Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
-Programming Language :: Python :: 2
-Programming Language :: Python :: 3
+Programming Language :: Python :: 2.6
+Programming Language :: Python :: 2.7
+Programming Language :: Python :: 3.3
+Programming Language :: Python :: 3.4
+Programming Language :: Python :: 3.5
+Programming Language :: Python :: Implementation :: CPython
+Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
"""