-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 1.39 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
[project]
name = "chatbot"
version = "0.1.0"
description = "Base dos Dados chatbot API"
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"alembic>=1.18.0",
"fastapi[standard]>=0.123.4",
"google-cloud-bigquery>=3.39.0",
"httpx>=0.28.1",
"langchain>=1.2.0",
"langchain-google-genai>=4.1.3",
"langgraph>=1.0.5",
"langgraph-checkpoint-postgres>=3.0.2",
"langsmith>=0.6.0",
"loguru>=0.7.3",
"marko>=2.2.2",
"psycopg[binary]>=3.3.2",
"pydantic>=2.12.0",
"pydantic-settings>=2.12.0",
"pyjwt>=2.10.1",
"sqlmodel>=0.0.31",
]
[dependency-groups]
dev = [
"ipython>=9.9.0",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=0.26.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.14.0",
"respx>=0.22.0",
"ruff>=0.14.10",
"testcontainers[postgres]>=4.10.0",
]
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.isort]
known-third-party = ["alembic"]
[tool.pytest.ini_options]
minversion = "9.0"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
addopts = [
"-v",
"--tb=short",
"--strict-markers",
"-ra",
]
[tool.coverage.run]
source = ["app"]
branch = true
concurrency = ["thread", "greenlet"]
omit = ["app/log_config.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
]
show_missing = true