1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
[metadata]
license_file = LICENSE
name = pytest-mpl
url = https://github.com/matplotlib/pytest-mpl
author = Thomas Robitaille
author_email = thomas.robitaille@gmail.com
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Topic :: Scientific/Engineering :: Visualization
Programming Language :: Python
Programming Language :: Python :: 3
Operating System :: OS Independent
License :: OSI Approved :: BSD License
license = BSD
description = pytest plugin to help with testing figures output from Matplotlib
long_description = file: README.rst
long_description_content_type = text/x-rst
[options]
zip_safe = True
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
pytest
matplotlib
importlib_resources;python_version<'3.8'
packaging
Jinja2
Pillow
[options.entry_points]
pytest11 =
pytest_mpl = pytest_mpl.plugin
[options.extras_require]
test =
pytest-cov
docs =
sphinx
mpl_sphinx_theme>=3.6.0.dev0
sphinx_design
matplotlib==3.6
[tool:pytest]
testpaths = tests
norecursedirs = tests/subtests/subtest
filterwarnings =
error
ignore::DeprecationWarning
ignore:distutils Version classes are deprecated
ignore:the imp module is deprecated in favour of importlib
ignore:The NumPy module was reloaded
markers =
mpl_image_compare
[flake8]
max-line-length = 120
ignore = W503,W504
[pycodestyle]
max_line_length = 120
[isort]
balanced_wrapping = True
length_sort = False
length_sort_sections = stdlib
line_length = 100
[egg_info]
tag_build =
tag_date = 0
|