-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.85 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codebase2graph"
version = "0.2.0"
description = "Extract knowledge graphs from source code repositories. Rank relevant nodes with Personalized PageRank for LLM context. No LLM dependency — bring your own model."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{ name = "jw-open", email = "176761431+jw-open@users.noreply.github.com" },
]
keywords = [
"code-analysis",
"knowledge-graph",
"graph",
"rag",
"retrieval-augmented-generation",
"llm",
"context-engineering",
"pagerank",
"static-analysis",
"python",
"ast",
"codebase",
"dependency-graph",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/jw-open/code2graph"
Repository = "https://github.com/jw-open/code2graph"
Issues = "https://github.com/jw-open/code2graph/issues"
Changelog = "https://github.com/jw-open/code2graph/blob/main/CHANGELOG.md"
[project.scripts]
codebase2graph = "code2graph.cli:main"
codebase2graph-iterate = "code2graph.iterate:main"
codebase2graph-loop = "code2graph.loop:main"
[tool.hatch.build.targets.wheel]
packages = ["code2graph"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]