-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.51 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tldrgraph"
version = "0.2.0"
description = "See the flow of your spaghetti code, VibeCoders. Instant multi-layer architecture & semantic call tracing."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.0",
"pyyaml>=6.0",
"networkx>=3.0",
"tabulate>=0.9.0",
"graphifyy>=0.9.0",
"tree-sitter>=0.21",
"tree-sitter-javascript>=0.21",
"tree-sitter-typescript>=0.21",
"fastembed>=0.3",
"numpy>=1.24",
]
[project.optional-dependencies]
embeddings = [
"fastembed>=0.3",
"numpy>=1.24",
]
docs = [
"mkdocs-material>=9.5.0",
"mkdocs-minify-plugin>=0.8.0",
]
[project.urls]
Homepage = "https://github.com/vikrantd/TLDRGraph"
Documentation = "https://vikrantd.github.io/TLDRGraph/"
Repository = "https://github.com/vikrantd/TLDRGraph"
Issues = "https://github.com/vikrantd/TLDRGraph/issues"
[project.scripts]
tldrgraph = "tldrgraph.cli:main"
codechakra = "tldrgraph.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["tldrgraph*"]
[tool.setuptools.package-data]
"tldrgraph.visualizer" = ["assets/*.html", "assets/*.css", "assets/*.js"]