-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 975 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "multi-model-rag"
version = "0.1.0"
description = "Production-oriented multi-model RAG project scaffold"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"google-genai>=1.0.0",
"openai>=1.0.0",
"psycopg[binary]>=3.2.0",
"sqlalchemy>=2.0.30",
"uvicorn[standard]>=0.30.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.27.0",
"mypy>=1.10.0",
"pytest>=8.2.0",
"ruff>=0.6.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
no_implicit_optional = true
check_untyped_defs = true
[tool.setuptools.packages.find]
include = ["apps*", "packages*"]
exclude = ["tests*", "docs*", "infra*", "datasets*", "migrations*"]