-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 974 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 974 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 = "fia-doc-parser"
version = "0.0.0"
description = "FIA PDF documents parser"
authors = [
{name = "Thibault Cheneviere",email = "thibault.chene23@gmail.com"}
]
license = {text = "MIT"}
licence-file = 'LICENCE'
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pymupdf (>=1.26.7,<2.0.0)",
"pandas (>=2.3.3,<3.0.0)",
"pydantic (>=2.12.5,<3.0.0)",
"matplotlib (>=3.10.8,<4.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"ruff (>=0.14.10,<0.15.0)",
"ty (>=0.0.6,<0.0.7)",
"pytest (>=9.0.2,<10.0.0)",
"jedi-language-server (>=0.46.0,<0.47.0)",
"python-lsp-server (>=1.14.0,<2.0.0)"
]
[tool.pytest.ini_options]
addopts = '--cov fia_doc_parser'
testpaths = [
"tests"
]
[tool.ruff]
include = ["fia_doc_parser/**/*.py"]
target-version = "py313"
[tool.ruff.lint]
ignore = ["E741"]