-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 956 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tablesetter"
version = "0.1.0"
description = "Repair detached HTML table headers in chunked Unstructured documents."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"lxml>=5.3.0",
"orjson>=3.10.0",
"utic-public-types>=3.2.1,<4",
"uvicorn>=0.34.0",
]
[project.scripts]
tablesetter = "tablesetter.interfaces.cli:main"
tablesetter-http = "tablesetter.interfaces.http.app:main"
[dependency-groups]
dev = [
"httpx>=0.28.0",
"pytest>=8.3.0",
"pytest-benchmark>=5.1.0",
"pytest-cov>=5.0.0",
"ruff>=0.11.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/tablesetter"]
[tool.pytest.ini_options]
addopts = ["-ra"]
testpaths = ["tests", "benchmarks"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]
[tool.coverage.run]
source = ["tablesetter"]