File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 44__pycache__
55* .egg
66* .egg-info
7+ .idea
Original file line number Diff line number Diff line change 4343import matplotlib .pyplot as plt
4444from matplotlib .testing .compare import compare_images
4545from matplotlib .testing .decorators import ImageComparisonTest as MplImageComparisonTest
46- from matplotlib .testing .decorators import cleanup
4746
4847if sys .version_info [0 ] == 2 :
4948 from urllib import urlopen
Original file line number Diff line number Diff line change 1- import sys
21from setuptools import setup
32
43from pytest_mpl import __version__
1312
1413setup (
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 ,
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)
You can’t perform that action at this time.
0 commit comments