37 lines
733 B
TOML
37 lines
733 B
TOML
[project]
|
|
name = "design-agent"
|
|
version = "0.1.0"
|
|
description = "콘텐츠 시각 구조화 슬라이드 생성 에이전트"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn>=0.30",
|
|
"jinja2>=3.1",
|
|
"pydantic>=2.0",
|
|
"pydantic-settings>=2.0",
|
|
"anthropic>=0.40",
|
|
"httpx>=0.27",
|
|
"python-multipart>=0.0.9",
|
|
"sse-starlette>=2.0",
|
|
"pyyaml>=6.0",
|
|
"Pillow>=10.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24",
|
|
"ruff>=0.8",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py310"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
markers = [
|
|
"integration: end-to-end pipeline integration tests (heavy; invoke Selenium)",
|
|
]
|