forked from holoviz/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (49 loc) · 875 Bytes
/
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
[build-system]
requires = [
"param >=1.9.2",
"pyct >=0.4.4",
"setuptools >=42",
"bokeh >=3.1.1,<3.3.0",
"pyviz_comms >=0.7.4",
"requests",
"bleach",
"packaging",
"tqdm >=4.48.0",
"wheel"
]
[tool.ruff]
exclude = [
".git",
"__pycache__",
".tox",
".eggs",
"*.egg",
"doc",
"dist",
"build",
"_build",
"examples",
".ipynb_checkpoints",
"node_modules",
"apps",
]
ignore = [
"E402",
"E712",
"E731",
"E741",
"W605",
"E701", # Multiple statements on one line
]
line-length = 165
select = [
"E",
"F",
"W",
]
[tool.ruff.per-file-ignores]
"panel/tests/ui/jupyter_server_test_config.py" = ["F821"]
[tool.codespell]
ignore-words-list = "nd,doubleclick"
skip = "doc/generate_modules.py,examples/reference/templates/FastGridTemplate.ipynb"
write-changes = true