-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (60 loc) · 1.23 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
[project]
name = "jupyter-output-monitor"
authors = [
{name = "Thomas Robitaille", email = "[email protected]"},
]
license = {text = "BSD 3-Clause"}
description = "Monitor the visual output of Jupyter notebook cells"
urls = {Homepage = "https://github.com/glue-viz/jupyter-output-monitor"}
requires-python = ">=3.10"
dependencies = [
"numpy>=1.23",
"click",
"pillow",
"playwright",
"solara[pytest]",
"nbformat",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[build-system]
requires = ["setuptools",
"setuptools_scm"]
build-backend = 'setuptools.build_meta'
[project.scripts]
jupyter-output-monitor = "jupyter_output_monitor:main"
[tool.setuptools]
zip-safe = false
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
write_to = "jupyter_output_monitor/_version.py"
[tool.ruff]
lint.select = ["ALL"]
lint.ignore = [
"A00",
"ANN",
"T201",
"PTH",
"D100",
"D103",
"D104",
"C901",
"PLR0915",
"PLR2004",
"DTZ",
"E501",
"RET",
"INP",
"S101",
"SIM108",
"S603"
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"ipywidgets"
]