-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.89 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kindex"
version = "0.25.3"
description = "The memory layer AI coding agents don't have — persistent knowledge graph for AI workflows"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Jeremy McEntire", email = "jmcentire@users.noreply.github.com" }]
keywords = ["knowledge-graph", "ai", "context", "claude"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"pydantic>=2.0",
"pyyaml>=6.0",
"networkx>=3.0",
"numpy>=1.24",
"python-dateutil>=2.8",
]
[project.optional-dependencies]
llm = ["anthropic>=0.40"]
vectors = ["sqlite-vec>=0.1"]
mcp = ["mcp[cli]>=1.26.0"]
reminders = ["dateparser>=1.1", "cronsim>=2.0"]
transmogrifier = ["transmogrifier>=0.2.0"]
dev = ["pytest>=7.0", "scipy>=1.10", "dateparser>=1.1", "build>=1.0"]
all = ["anthropic>=0.40", "sqlite-vec>=0.1", "mcp[cli]>=1.26.0", "dateparser>=1.1", "cronsim>=2.0"]
[project.urls]
Homepage = "https://github.com/jmcentire/kindex"
Repository = "https://github.com/jmcentire/kindex"
Issues = "https://github.com/jmcentire/kindex/issues"
[project.scripts]
kin = "kindex.cli:main"
kin-mcp = "kindex.mcp_server:main"
[project.entry-points."kindex.adapters"]
github = "kindex.adapters.github:adapter"
linear = "kindex.adapters.linear:adapter"
files = "kindex.adapters.files:adapter"
commits = "kindex.adapters.git_hooks:adapter"
projects = "kindex.adapters.projects:adapter"
sessions = "kindex.adapters.sessions:adapter"
codex-sessions = "kindex.adapters.codex_sessions:adapter"
code = "kindex.adapters.code:adapter"
[tool.hatch.build.targets.wheel]
packages = ["src/kindex"]
[tool.pytest.ini_options]
testpaths = ["tests"]