-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages=["ragdaemon"]
[project]
name = "ragdaemon"
version = "0.9.0"
description = "Generate and render a call graph for a Python project."
readme = "README.md"
dependencies = [
"astroid==3.2.2",
"asyncpg==0.29.0",
"dict2xml==1.7.5",
"docker==7.1.0",
"fastapi==0.109.2",
"Jinja2==3.1.3",
"networkx==3.2.1",
"pgvector==0.3.2",
"psycopg2-binary==2.9.9",
"python-dotenv",
"rank_bm25==0.2.2",
"sqlalchemy==2.0.30",
"spiceai~=0.3.0",
"starlette==0.36.3",
"tqdm==4.66.2",
"uvicorn==0.29.0",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/AbanteAI/ragdaemon"
[project.scripts]
ragdaemon = "ragdaemon.__main__:run"
[project.optional-dependencies]
dev = [
"ruff",
"pyright==1.1.372",
"pytest",
"pytest-asyncio"
]
[tool.pyright]
ignore = ["tests/sample", "venv", ".venv"]