-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 1.25 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "graphanything"
version = "0.1.0"
description = "Turn anything into a navigable knowledge graph. 10 schema presets, 8 extractors (rule + LLM + VLM stub), 9 render formats, 17 MCP tools."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10,<3.14"
keywords = ["knowledge-graph", "llm", "claude-code", "mcp", "networkx", "openai-compatible"]
dependencies = [
"networkx",
"pyyaml>=6.0",
"requests>=2.28",
]
[project.optional-dependencies]
mcp = ["mcp"]
neo4j = ["neo4j"]
svg = ["matplotlib"]
repl = ["prompt_toolkit>=3.0"]
all = ["mcp", "neo4j", "matplotlib", "prompt_toolkit>=3.0"]
[project.scripts]
graphanything = "GraphAnything.cli:main"
# pyproject.toml lives *inside* the package directory (GraphAnything/), so
# we map the package name to "." explicitly instead of letting
# `find_packages` walk for it.
[tool.setuptools]
packages = [
"GraphAnything",
"GraphAnything.extractors",
"GraphAnything.viz",
]
[tool.setuptools.package-dir]
"GraphAnything" = "."
"GraphAnything.extractors" = "extractors"
"GraphAnything.viz" = "viz"
[tool.setuptools.package-data]
"GraphAnything" = ["schemas/*.yaml", "schemas/*.json", "skill.md"]