-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 1.55 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
63
64
65
66
67
68
69
70
71
72
[project]
name = "agentic-ai-for-serious-engineers"
version = "0.1.0"
description = "A practical field guide to building reliable, evaluable, and production-grade agent systems"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [{name = "Sunil Prakash"}]
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
"fastapi>=0.110",
"uvicorn>=0.29",
"structlog>=24.1",
"chromadb>=0.5",
"pypdf>=4.0",
"tiktoken>=0.7",
"tenacity>=8.2",
"python-dotenv>=1.0",
"pyyaml>=6.0",
"numpy>=1.26",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.4",
"mypy>=1.10",
]
foundations = [
"google-adk>=1.0",
"langchain>=0.3",
"langchain-core>=0.3",
"langchain-anthropic>=0.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"project/**/run_eval.py" = ["E402"]
"project/**/run.py" = ["E402"]
"project/**/assistant.py" = ["E402"]
"project/**/compare.py" = ["E402"]
"project/**/agent.py" = ["E402"]
"tests/integration/test_hitl_pipeline.py" = ["E402"]
"tests/integration/test_memory_pipeline.py" = ["E402"]
"src/ch00/*.py" = ["E402"]
[tool.mypy]
python_version = "3.11"
strict = false
warn_return_any = true
warn_unused_configs = true