-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.13 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
[project]
name = "postgres-graph-rag"
version = "0.1.2"
description = "A lean GraphRAG library using Postgres/pgvector as the sole database"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Hagen", email = "hagen@example.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"psycopg[binary,pool]>=3.1.18",
"pgvector>=0.2.5",
"openai>=1.12.0",
"google-genai>=0.1.0",
"pandas>=2.2.0",
"pydantic>=2.6.0",
"python-dotenv>=1.0.1",
"networkx>=3.4.2",
"matplotlib>=3.10.8",
"ipykernel>=7.1.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-mock>=3.12.0",
"pytest-asyncio>=0.23.0",
]
[project.urls]
Homepage = "https://github.com/h4gen/postgres-graph-rag"
Repository = "https://github.com/h4gen/postgres-graph-rag"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["postgres_graph_rag"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"