-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (56 loc) · 1.57 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
58
59
60
61
62
[project]
name = "genai-experience-concierge-backend"
version = "0.1.0"
description = "Backend server for the Gen AI Experience Concierge demo. Hosts multiple LangGraph agents based on the agent design pattern notebooks."
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"langgraph-checkpoint>=2.0.16",
"pydantic-settings>=2.6.1",
"fastapi>=0.115.9",
"uvicorn>=0.34.0",
"psycopg[binary]>=3.2.5",
"langgraph-checkpoint-postgres>=3.1.1",
"google-genai>=1.3.0",
"langgraph-checkpoint-sqlite>=2.0.5",
"google-cloud-bigquery>=3.30.0",
"google-cloud-bigquery-storage>=2.29.0",
"db-dtypes>=1.4.2",
"thefuzz>=0.22.1",
"tenacity>=9.0.0",
"langgraph>=0.3.21",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["./concierge"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ipython>=9.0.2",
"mypy>=1.15.0",
"pylint>=3.3.6",
]
[tool.pyright]
typeCheckingMode = "off"
reportInvalidTypeForm = false
# leave mypy checks to demo sub-projects
[tool.mypy]
packages = ["concierge"]
disable_error_code = ["misc", "import-untyped"]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
check_untyped_defs = true
disallow_subclassing_any = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
follow_imports = "skip"
ignore_missing_imports = true
explicit_package_bases = true
[tool.pylint.messages_control]
disable=["wrong-import-order"]