-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 770 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mathruler"
dynamic = ["version", "description", "readme", "dependencies"]
requires-python = ">=3.9"
[project.scripts]
mathruler = "mathruler.interface:main"
[tool.ruff]
target-version = "py39"
line-length = 119
indent-width = 4
[tool.ruff.lint]
ignore = ["C901", "C403", "C419", "E501", "E722", "E741", "W605", "C408"]
select = ["C", "E", "F", "I", "W"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-third-party = ["torch", "transformers", "vllm"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"