-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (72 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
87 lines (72 loc) · 1.66 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "parxy"
version = "0.12.0"
description = "Parxy document processing gateway"
readme = "README.md"
authors = [
{ name = "Alessio Vertemati", email = "alessio@oneofftech.xyz" }
]
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pymupdf>=1.26.3",
"requests>=2.32.4",
"validators>=0.35.0",
"typer>=0.9.0",
"rich>=13.7.0",
"python-dotenv>=1.0.1",
"importlib-resources>=6.1.3",
"opentelemetry-api>=1.37.0",
"opentelemetry-exporter-otlp>=1.37.0",
"opentelemetry-proto>=1.37.0",
"opentelemetry-sdk>=1.37.0",
]
[project.scripts]
parxy = "parxy_cli.cli:main"
[tool.setuptools.package-data]
parxy_cli = [".env.example", "compose.example.yaml", "otel-collector-config.example.yaml", "agents.template.md"]
[project.optional-dependencies]
llama = [
"llama-cloud-services>=0.6.77",
]
llmwhisperer = [
"llmwhisperer-client>=2.4.2",
]
unstructured_local = [
"unstructured[pdf]>=0.18.13",
]
landingai = [
"landingai-ade>=0.15.1",
]
tui = [
"textual>=0.89.0",
]
all = [
"llama-cloud-services>=0.6.77",
"llmwhisperer-client>=2.4.2",
"unstructured[pdf]>=0.18.13",
"landingai-ade>=0.15.1",
"textual>=0.89.0",
]
[build-system]
requires = ["uv_build>=0.8.11,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = ["parxy_core", "parxy_cli"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"ruff>=0.12.9",
]
[tool.uv]
default-groups = "all"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.ruff.lint]
extend-select = ["T201"]
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true