-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1001 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
46
47
[project]
name = "invoice-parser"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pdf2image>=1.17.0",
"pillow>=11.2.1",
"pydantic>=2.11.5",
"pydantic-ai>=0.2.12",
"pydantic-graph>=0.2.12",
"pydantic-settings>=2.9.1",
"pypdfium2>=4.30.1",
]
[dependency-groups]
dev = [
"ruff>=0.11.12",
]
[tool.ruff]
exclude = [
".ruff_cache",
".git",
".ipynb_checkpoints",
".venv",
".vscode",
"notebooks"
]
extend-include = []
line-length = 120
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
ignore = ["ANN204", "ANN401", "E731", "D", "DTZ005", "BLE001","B008", "CPY001","COM812", "ERA001", "EM101","EM102", "FA","FBT", "G004", "UP", "TRY", "PTH123","ISC001" ]
select = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
docstring-code-line-length = "dynamic"