-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (68 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (68 loc) · 1.54 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
[project]
name = "orcha-backend"
version = "0.3.0"
description = "backend for orcha ai extraction"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"typer>=0.25.1",
"fastapi-limiter>=0.2.0",
"fastapi[standard]>=0.136.1",
"httpx>=0.28.1",
"nanoid>=2.0.0",
"pdfplumber>=0.11.9",
"pymupdf>=1.27.2.3",
"pymupdf4llm>=1.27.2.3",
"psycopg[binary]>=3.3.4",
"pydantic>=2.13.4",
"pydantic-ai>=1.94.0",
"python-multipart>=0.0.28",
"sqlalchemy>=2.0.49",
"sqlmodel>=0.0.38",
"temporalio>=1.27.0",
"PyJWT>=2.12.1",
"cryptography>=48.0.0",
"alembic>=1.18.4",
"idutils>=1.6.1",
]
[project.scripts]
orcha = "app.cli.main:app"
[project.optional-dependencies]
langfuse = [
"langfuse>=4.7.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[dependency-groups]
dev = [
"ruff>=0.15.12",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"pytest-mock>=3.15.1",
"ty>=0.0.35",
]
[tool.ruff]
target-version = "py314"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"D", # pydocstyle
]
ignore = [
"D100", # missing docstring in public module
"D104", # missing docstring in public package
"D106", # missing docstring in public nested class
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ty.environment]
python-version = "3.14"
[tool.ty.src]
include = ["app", "tests"]