-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.2 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
[tool.poetry]
name = "context-memory-persistor"
version = "0.1.0"
description = "AI Agent Context Management System"
authors = ["Deepak Gupta <deepakdgupta1@example.com>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.115.0"
uvicorn = "^0.32.0"
pydantic = "^2.10.0"
sentence-transformers = "^3.3.0"
transformers = "^4.47.0"
torch = "^2.5.0"
faiss-cpu = "^1.9.0"
rank-bm25 = "^0.2.2"
tree-sitter = "^0.23.0"
tree-sitter-python = "^0.23.0"
networkx = "^3.4"
sqlalchemy = "^2.0.36"
watchdog = "^6.0.0"
httpx = "^0.28.0"
anyio = "^4.7.0"
structlog = "^24.4.0"
tenacity = "^9.0.0"
pandas = "^2.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
pytest-asyncio = "^0.24.0"
pytest-cov = "^6.0.0"
hypothesis = "^6.122.0"
ragas = "^0.2.0"
flake8 = "^7.0.0"
black = "^24.0.0"
mypy = "^1.8.0"
pre-commit = "^4.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=backend"
testpaths = [
"tests",
]
asyncio_mode = "auto"
[tool.black]
line-length = 100
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
strict = false
ignore_missing_imports = true
disable_error_code = "misc"