-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (67 loc) · 1.7 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
[project]
name = "codegraph-gen"
version = "1.4.0"
description = "AST-based codebase knowledge graph generator in Markdown"
readme = "README.md"
authors = [
{ name = "twn39", email = "twn39@163.com" }
]
license = { text = "MIT" }
keywords = [
"knowledge-graph",
"ast",
"codebase",
"markdown",
"tree-sitter",
"visualization",
"static-analysis",
"ai-agent",
"obsidian",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.11"
dependencies = [
"networkx>=3.0",
"tree-sitter>=0.23.0",
"tree-sitter-python",
"tree-sitter-javascript",
"tree-sitter-typescript",
"tree-sitter-go",
"tree-sitter-rust",
"tree-sitter-swift",
"click>=8.0.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"tree-sitter-c>=0.24.2",
"tree-sitter-cpp>=0.23.4",
"tree-sitter-kotlin>=1.1.0",
"tree-sitter-ocaml>=0.25.0",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"ruff>=0.15.16",
"ty>=0.0.44",
"plotly>=5.0.0",
"numpy>=1.20.0",
]
[project.urls]
Homepage = "https://github.com/twn39/codegraph"
Repository = "https://github.com/twn39/codegraph"
Issues = "https://github.com/twn39/codegraph/issues"
[project.scripts]
codegraph = "codegraph_gen.__main__:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]