-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
79 lines (69 loc) · 1.7 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
[tool.ruff]
builtins = ["ellipsis"]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
extend-include = ["*.ipynb"]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
ignore = [
"E501", # Conflicts with ruff format
"E721", # Comparing types instead of isinstance
"E741", # Ambiguous variable names
]
per-file-ignores = {}
select = ["E", "F", "I", "UP", "W"]
[tool.ruff.lint.mccabe]
max-complexity = 18
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = []
[tool.ruff.format]
docstring-code-format = true
quote-style = "single"
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.pixi.workspace]
channels = ["conda-forge"]
name = "dash-docsets"
platforms = ["linux-64", "osx-arm64"]
[tool.pixi.dependencies]
"beautifulsoup4" = ">=4.14.3"
"doc2dash" = ">=3.1.0"
"pip" = ">=26.0.1"
"pydantic" = ">=2.12.5"
"python" = ">=3.13,<3.14"
"rich" = ">=14.3.3"
"ruamel.yaml" = ">=0.19.1"
"typer" = ">=0.23.1"
[tool.pixi.tasks]
build-docsets = "python builder.py build"
update-feed-list = "python builder.py update-feed-list"