-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "raglogs"
version = "0.1.0"
description = "Incident explanation tool for production logs"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"typer[all]>=0.12.0",
"fastapi>=0.111.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy[asyncio]>=2.0.0",
"alembic>=1.13.0",
"psycopg[binary,pool]>=3.1.0",
"pgvector>=0.3.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.3.0",
"rich>=13.7.0",
"orjson>=3.10.0",
"httpx>=0.27.0",
"tenacity>=8.3.0",
"numpy>=1.26.0",
"scikit-learn>=1.5.0",
"python-dateutil>=2.9.0",
"structlog>=24.1.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
local-embeddings = [
"sentence-transformers>=3.0.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"anyio>=4.0.0",
]
[project.scripts]
raglogs = "src.cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]