Skip to content

Commit 45a5656

Browse files
authored
Merge pull request #56 from nicoddemus/classifier-py36
Add classifiers for py36, PyPy and Anaconda badge
2 parents 76e8aba + 73741d7 commit 45a5656

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluggy - A minimalist production ready plugin system
22
====================================================
3-
|pypi| |versions| |travis| |appveyor|
3+
|pypi| |anaconda| |versions| |travis| |appveyor|
44

55

66
This is the core framework used by the `pytest`_, `tox`_, and `devpi`_ projects.
@@ -66,6 +66,8 @@ A definitive example
6666
:target: https://travis-ci.org/pytest-dev/pluggy
6767
.. |appveyor| image:: https://img.shields.io/appveyor/ci/pytestbot/pluggy/master.svg
6868
:target: https://ci.appveyor.com/project/pytestbot/pluggy
69+
.. |anaconda| image:: https://anaconda.org/conda-forge/pluggy/badges/version.svg
70+
:target: https://anaconda.org/conda-forge/pluggy
6971

7072
.. links
7173
.. _pytest:

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
'Operating System :: MacOS :: MacOS X',
1111
'Topic :: Software Development :: Testing',
1212
'Topic :: Software Development :: Libraries',
13-
'Topic :: Utilities'] + [
13+
'Topic :: Utilities',
14+
'Programming Language :: Python :: Implementation :: CPython',
15+
'Programming Language :: Python :: Implementation :: PyPy'] + [
1416
('Programming Language :: Python :: %s' % x) for x in
15-
'2 2.6 2.7 3 3.3 3.4 3.5'.split()]
17+
'2 2.6 2.7 3 3.3 3.4 3.5 3.6'.split()]
1618

1719
with open('README.rst') as fd:
1820
long_description = fd.read()

0 commit comments

Comments
 (0)