Skip to content

Commit c213546

Browse files
authored
Merge pull request #34 from cdeil/classifiers
Add PyPI classifiers to setup.py
2 parents d4d30e8 + f8df6bf commit c213546

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
__pycache__
55
*.egg
66
*.egg-info
7+
.idea

pytest_mpl/plugin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
import matplotlib.pyplot as plt
4444
from matplotlib.testing.compare import compare_images
4545
from matplotlib.testing.decorators import ImageComparisonTest as MplImageComparisonTest
46-
from matplotlib.testing.decorators import cleanup
4746

4847
if sys.version_info[0] == 2:
4948
from urllib import urlopen

setup.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
from setuptools import setup
32

43
from pytest_mpl import __version__
@@ -13,7 +12,7 @@
1312

1413
setup(
1514
version=__version__,
16-
url="https://github.com/astrofrog/pytest-mpl",
15+
url="https://github.com/matplotlib/pytest-mpl",
1716
name="pytest-mpl",
1817
description='pytest plugin to help with testing figures output from Matplotlib',
1918
long_description=long_description,
@@ -24,4 +23,16 @@
2423
author='Thomas Robitaille',
2524
author_email='thomas.robitaille@gmail.com',
2625
entry_points={'pytest11': ['pytest_mpl = pytest_mpl.plugin']},
26+
classifiers=[
27+
'Development Status :: 4 - Beta',
28+
'Framework :: Pytest',
29+
'Intended Audience :: Developers',
30+
'Topic :: Software Development :: Testing',
31+
'Topic :: Scientific/Engineering :: Visualization',
32+
'Programming Language :: Python',
33+
'Programming Language :: Python :: 2',
34+
'Programming Language :: Python :: 3',
35+
'Operating System :: OS Independent',
36+
'License :: OSI Approved :: BSD License',
37+
],
2738
)

0 commit comments

Comments
 (0)