-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (57 loc) · 1.2 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
[build-system]
requires = ["setuptools>=70.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "markdown-web-browser"
version = "0.1.0"
description = "Render any URL to Markdown via tiled screenshots + olmOCR"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"granian>=2.1.2",
"playwright>=1.48",
"pillow>=11.0",
"pyvips>=2.2",
"python-decouple>=3.8",
"pydantic>=2.8",
"jinja2>=3.1",
"httpx[http2]>=0.27",
"sqlmodel>=0.0.22",
"sqlite-vec>=0.1.1",
"zstandard>=0.23",
"mistune>=3.0",
"prometheus-client>=0.20",
"prometheus-fastapi-instrumentator>=7.1",
"structlog>=24.1",
"typer>=0.12",
"rich>=13.9",
"beautifulsoup4>=4.14",
"numpy>=2.0",
"psutil>=7.0",
"arq>=0.26",
"redis>=5.0",
]
[project.optional-dependencies]
local-ocr = [
"vllm>=0.6.0",
"sglang>=0.3.0",
"olmocr>=0.4.0",
]
observability = [
"opentelemetry-sdk>=1.28",
"opentelemetry-exporter-otlp>=1.28",
]
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pyoxipng>=9.0",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"ruff>=0.6",
]
[tool.setuptools.packages.find]
include = ["app*"]