-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.03 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
[project]
name = "pragma"
version = "0.1.0"
description = "Historical GitLab MR database with semantic search API"
requires-python = ">=3.10, <3.13"
dependencies = [
"llama-index",
"google-generativeai",
"chromadb",
"python-dotenv",
"typer",
"PyYAML",
"llama-index-embeddings-google-genai",
"llama-index-vector-stores-chroma",
"python-gitlab>=8.1.0",
"fastapi>=0.135.1",
"uvicorn>=0.41.0",
"mcp>=1.26.0",
"httpx>=0.28.1",
"llama-index-embeddings-huggingface>=0.6.1",
"pydantic-ai>=0.0.30",
"anyio>=4.0.0",
"filelock>=3.25.0",
]
[project.scripts]
pragma = "main:app"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["adapters", "agents", "indexer"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.5",
]