-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (89 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
97 lines (89 loc) · 2.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "raw-langchain"
version = "0.0.1"
description = "A test application"
readme = "README.md"
requires-python = ">=3.13"
license = { text = "MIT" }
authors = [
{ name = "Oleksii Ilienko", email = "assada.ua@gmail.com" }
]
dependencies = [
"alembic>=1.16.4",
"asgi-correlation-id>=4.3.4",
"asyncpg>=0.30.0",
"black>=25.1.0",
"dependency-injector>=4.48.1",
"fastapi>=0.115.14",
"greenlet>=3.2.3",
"langchain>=0.3.26",
"langchain-core==0.3.69",
"langchain-openai>=0.3.27",
"langfuse==3.3.0",
"langgraph==0.5.3",
"langgraph-checkpoint-postgres==2.0.23",
"mypy>=1.17.0",
"opentelemetry-instrumentation-fastapi>=0.55b1",
"prometheus-fastapi-instrumentator>=7.1.0",
"psycopg2-binary>=2.9.10",
"psycopg[binary,pool]>=3.2.9",
"pydantic-core>=2.33.2",
"pyright>=1.1.403",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.0",
"python-dotenv>=1.1.1",
"python-multipart>=0.0.20",
"ruff>=0.12.5",
"sqlmodel>=0.0.24",
"sse-starlette==2.4.1",
"uvicorn>=0.35.0",
]
[project.urls]
Homepage = "https://www.djangoproject.com/"
Source = "https://github.com/django/django"
[tool.mypy]
python_version = "3.13"
strict = true
warn_unreachable = true
plugins = ["pydantic.mypy"]
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "C4", "T20"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--strict-markers",
"--strict-config",
"--verbose",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
]
[tool.coverage.run]
source = ["app"]
omit = [
"*/tests/*",
"*/test_*",
"*/__pycache__/*",
"*/migrations/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]