-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (88 loc) · 2.95 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (88 loc) · 2.95 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "knowledge-worker"
version = "0.8.3"
description = "Local-first knowledge graph memory for LLMs and AI agents: MCP server, RAG context, provenance"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Rahul Rangarao", email = "rahulmohanrangarao@gmail.com" }]
keywords = [
"knowledge-graph",
"ai-memory",
"llm-memory",
"agent-memory",
"memory",
"context-management",
"context-engineering",
"local-first",
"provenance",
"personal-knowledge-management",
"note-taking",
"obsidian",
"markdown",
"rag",
"graphrag",
"retrieval-augmented-generation",
"mcp",
"mcp-server",
"model-context-protocol",
"llm",
"llm-tools",
"ai",
"agents",
"claude",
"anthropic",
"openai",
"ollama",
"json-ld",
"rdf",
"sparql",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Utilities",
]
# Core graph (seed/summary/query/viz/export_context) — stdlib only, no deps.
# Install optional extras for LLM-backed ingest and Turtle export.
dependencies = []
[project.optional-dependencies]
rdf = ["rdflib>=7.0.0"]
anthropic = ["anthropic>=0.39.0", "rdflib>=7.0.0"]
openai = ["openai>=1.68.0", "rdflib>=7.0.0"]
llm = ["anthropic>=0.39.0", "openai>=1.68.0", "rdflib>=7.0.0"]
ollama = ["httpx>=0.27.0", "rdflib>=7.0.0"]
proxy = ["fastapi>=0.110.0", "httpx>=0.27.0", "mcp[cli]>=1.0.0", "uvicorn[standard]>=0.27.0"]
all = ["anthropic>=0.39.0", "openai>=1.68.0", "httpx>=0.27.0", "rdflib>=7.0.0"]
[project.scripts]
mykg = "mygraph.mygraph:cli"
mygraph = "mygraph.mygraph:cli"
[project.urls]
Homepage = "https://github.com/rahulmranga/knowledge-worker"
Documentation = "https://github.com/rahulmranga/knowledge-worker#readme"
Repository = "https://github.com/rahulmranga/knowledge-worker"
Changelog = "https://github.com/rahulmranga/knowledge-worker/blob/main/CHANGELOG.md"
Issues = "https://github.com/rahulmranga/knowledge-worker/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["mygraph*", "ollama_proxy*"]