-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.46 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
[project]
name = "gogo-agent"
version = "0.1.0"
description = "LangChain + LangGraph multi-agent corporate travel assistant"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"langchain>=0.3.0",
"langgraph>=0.2.0",
"langchain-openai>=0.2.0",
"pydantic-settings>=2.6.0",
"sqlalchemy>=2.0.0",
"python-dotenv>=1.0.0",
"redis>=5.0.0",
"langchain-community>=0.3.0",
"langchain-mcp-adapters>=0.1.0",
"mcp>=1.12.0",
"httpx>=0.27.0",
"pymysql>=1.1.0",
"openpyxl>=3.1.0",
"python-docx>=1.1.0",
"alibabacloud-bailian20231229>=2.13.1",
"minio>=7.2.0",
"cryptography>=42.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0.0", "ruff>=0.8.0"]
[project.scripts]
gogo-agent = "backend.cli:main"
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["backend*"]
[tool.setuptools.package-data]
backend = ["resources/**/*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
# FastAPI intentionally evaluates Depends/Header declarations in defaults.
# Provider and tool boundaries deliberately catch broad exceptions so optional
# integrations can degrade gracefully. Database/domain timestamps remain naive
# because the migrated schema stores local business time without timezone data.
ignore = ["B008", "BLE001", "DTZ001", "DTZ005", "DTZ011"]