-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
88 lines (79 loc) · 1.82 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = [
"setuptools>=80",
"setuptools-scm[simple]>=8",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-mpl"
authors = [
{ name = "Thomas Robitaille", email = "thomas.robitaille@gmail.com" },
]
license = "BSD-2-Clause"
license-files = [
"LICENSE",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
description = "pytest plugin to help with testing figures output from Matplotlib"
requires-python = ">=3.10"
dependencies = [
"pytest>=6.2.5",
"matplotlib>=3.5.3",
"packaging>=22.0.0",
"Jinja2>=2.10.2",
"Pillow>=8.1.1",
]
dynamic = [
"version",
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/matplotlib/pytest-mpl"
[project.entry-points.pytest11]
pytest_mpl = "pytest_mpl.plugin"
[project.optional-dependencies]
test = [
"pytest-cov>=6.0.0",
]
docs = [
"sphinx>=7.0.0",
"mpl_sphinx_theme>=3.9.0",
"sphinx_design>=0.6.0",
"matplotlib==3.10.*",
]
[tool.setuptools]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
[tool.pytest.ini_options]
testpaths = [
"tests",
]
norecursedirs = [
"tests/subtests/subtest",
]
filterwarnings = [
"error",
"ignore:distutils Version classes are deprecated",
"ignore:the imp module is deprecated in favour of importlib",
"ignore:The NumPy module was reloaded",
]
[tool.isort]
balanced_wrapping = true
length_sort = false
length_sort_sections = [
"stdlib",
]
line_length = 100