-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (96 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (96 loc) · 1.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "grafitodb"
version = "0.8.4"
description = "SQLite-based Property Graph Database"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"networkx>=3.6.1",
"numpy>=1.26.4",
"orjson>=3.11.5",
"zstandard>=0.23.0",
"PyYAML>=6.0",
]
[project.optional-dependencies]
faiss = [
"faiss-cpu>=1.13.2",
]
annoy = [
"annoy>=1.17.3",
]
leann = [
"leann>=0.3.6",
]
hnswlib = [
"hnswlib>=0.8.0",
]
usearch = [
"usearch>=2.0.0",
]
voyager = [
"voyager>=2.0.0",
]
rdf = [
"rdflib>=7.0.0",
]
anthropic = [
"anthropic>=0.116.0",
]
http = [
"httpx>=0.27.0",
]
mcp = [
"mcp>=1.0.0",
]
viz = [
"pyvis>=0.3.2",
]
bm25s = [
"bm25s>=0.2.2",
]
document-chonkie = [
"chonkie>=1.0.0",
]
d2 = [
]
netgraph = [
"netgraph>=4.13.0",
"matplotlib>=3.8.0",
]
all = [
"faiss-cpu>=1.13.2",
"annoy>=1.17.3",
"leann>=0.3.6",
"hnswlib>=0.8.0",
"usearch>=2.0.0",
"voyager>=2.0.0",
"rdflib>=7.0.0",
"pyvis>=0.3.2",
"bm25s>=0.2.2",
"netgraph>=4.13.0",
"matplotlib>=3.8.0",
"httpx>=0.27.0",
"mcp>=1.0.0",
]
docs = [
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.24.0",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
grafito-mcp = "grafito.mcp.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["grafito"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "-v --cov=grafito --cov-report=term-missing"
cache_dir = "tmp_pytest_cache"