-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 728 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (36 loc) · 728 Bytes
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
[project]
name = "rules_pycross"
version = "0.0"
authors = []
requires-python = ">=3.11"
[project.optional-dependencies]
# core dependencies are required by repo rules
core = [
"installer==1.0.0",
"packaging==26.2",
"patch-ng==1.19.1",
]
build = [
"build==1.5.0",
]
repairwheel = [
"repairwheel==0.6.2",
]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
force-single-line = true
[tool.pylint]
line-length = 120
[tool.flakeheaven]
max_line_length = 120
[tool.flakeheaven.plugins]
"flake8-*" = ["+*"]
flake8-import-restrictions = ["+I2043"]
pyflakes = ["+*", "-F541"]
[tool.flakeheaven.exceptions."**/*.md"]
pyflakes = ["-*"]