-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.26 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
[project]
name = "ai-agent-py"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"pydantic-settings>=2.7.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"langchain>=1.2.15",
"langchain-community>=0.4.1",
"langchain-core>=1.3.0",
"langchain-experimental>=0.4.1",
"langchain-openai>=1.1.16",
"langgraph>=1.1.9",
"langgraph-checkpoint-sqlite>=3.0.3",
"python-dotenv>=1.2.2",
]
[project.optional-dependencies]
windows-service = ["pywin32>=307"]
dev = ["pytest>=8.0", "httpx>=0.27", "ruff>=0.8"]
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
# 이 프로젝트는 실행 스크립트(main.py/api_server.py 등) 중심이며,
# 최상위 폴더(logs, integration 등)를 파이썬 패키지로 자동 탐색하면 editable 설치가 실패할 수 있습니다.
[tool.setuptools]
packages = []
py-modules = []
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 120
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.lint.per-file-ignores]
# 한국어 긴 문자열·레거시 도구 코드
"main.py" = ["E501"]
"windows_service.py" = ["E501"]