-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.19 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
[project]
name = "pdf-problem-cutter"
version = "0.1.0"
description = "PDF 문제 분리 도구 - OpenCV를 이용한 시험지 문제/정답 자동 분리"
requires-python = ">=3.10"
authors = [
{ name = "Joonho" }
]
readme = "README.md"
license = { text = "MIT" }
dependencies = [
"numpy>=1.24.0",
"opencv-python>=4.8.0",
"PyMuPDF>=1.23.0",
"Pillow>=10.0.0",
"aiohttp>=3.13.2",
"python-dotenv>=1.2.1",
"requests>=2.32.5",
"pytesseract>=0.3.13",
"pdf2image>=1.17.0",
# FastAPI & Web Server
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.6",
# Database (SQLite ORM)
"sqlalchemy>=2.0.0",
# UI (Phase 1)
"streamlit>=1.28.0",
"langgraph>=1.0.3",
"anthropic>=0.72.1",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["core", "AgentTools"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["core"]
omit = ["*/tests/*"]