-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
71 lines (65 loc) · 1.73 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "matplotlib-inline"
description = "Inline Matplotlib backend for Jupyter"
authors = [
{name = "IPython Development Team", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: IPython",
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 3",
"Framework :: Jupyter :: JupyterLab :: 4",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics",
]
dependencies = ["traitlets"]
dynamic = ["version"]
keywords = [
"ipython",
"jupyter",
"matplotlib",
"python",
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
[project.entry-points."matplotlib.backend"]
inline = "matplotlib_inline.backend_inline"
[project.optional-dependencies]
test = [
"flake8",
"matplotlib",
"nbdime",
"nbval",
"notebook",
"pytest",
]
[project.urls]
Homepage = "https://github.com/ipython/matplotlib-inline"
[tool.setuptools.dynamic]
version = {attr = "matplotlib_inline.__version__"}
[tool.pytest.ini_options]
xfail_strict = true
log_cli_level = "info"
addopts = [
"--nbval",
"--nbdime",
"--ignore=tests/notebooks/.ipynb_checkpoints/*",
]
testpaths = [
"tests",
]