forked from matplotlib/pytest-mpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (35 loc) · 960 Bytes
/
setup.cfg
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
[metadata]
license_file = LICENSE
name = pytest-mpl
version = 0.11
url = https://github.com/matplotlib/pytest-mpl
author = Thomas Robitaille
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Topic :: Scientific/Engineering :: Visualization
Programming Language :: Python
Programming Language :: Python :: 2
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
[options]
zip_safe = True
packages = find:
install_requires =
pytest
matplotlib
[options.entry_points]
pytest11 =
pytest_mpl = pytest_mpl.plugin
[options.extras_require]
test =
pytest-cov
[tool:pytest]
testpaths = "tests"