-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (48 loc) · 1.03 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
[project]
name = "dash-base-sdk"
version = "0.0.0"
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"Markdown>=3.7",
"pymarkdownlnt>=0.9.37",
"pygments-styles>=0.3.0",
"rjsmin>=1.2",
"ruff>=0.9",
"semgrep>=1.118.0",
"zensical>=0.0.33",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["contrib", "contrib.zen"]
[tool.ruff]
indent-width = 2
line-length = 80
target-version = "py311"
[tool.ruff.lint]
select = [
"ANN", # flake8-annotations
"B", # flake8-bugbear
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"RUF", # ruff
"S", # flake8-bandit
"TCH", # flake8-type-checking
"UP", # pyupgrade
"W", # pycodestyle warnings
]
[tool.ruff.format]
indent-style = "space"
line-ending = "lf"
quote-style = "double"
skip-magic-trailing-comma = false
[tool.pymarkdown.extensions.markdown-tables]
enabled = true
[tool.pymarkdown.plugins.md013]
line_length = 120
heading_line_length = 120
code_blocks = false
tables = false