-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 927 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 927 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
48
49
[project]
name = "agenthire"
version = "0.1.0"
description = "Phase 1 AgentHire LangGraph pipeline"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"langgraph>=0.2.0",
"langchain>=0.3.0",
"Jinja2>=3.1.0",
"pydantic>=2.8.0",
"python-multipart>=0.0.9",
"python-dotenv>=1.0.1",
"httpx>=0.27.0",
"pymupdf>=1.24.0",
"pymupdf4llm>=1.27.2.1",
"langchain-ollama>=0.2.0",
"loguru>=0.7.2",
"pytesseract>=0.3.10",
"pillow>=10.0.0",
"resend>=2.4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.14.0",
"ruff>=0.6.0",
"mypy>=1.11.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 88
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["app*"]