-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codezoom"
version = "2.3.2.dev0"
description = "Multi-level code structure explorer — interactive drill-down HTML visualizations"
readme = "README.md"
license = "Unlicense"
requires-python = ">=3.11"
authors = [
{ name = "Curtis Rueden" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"pyyaml>=6.0",
]
[project.optional-dependencies]
python = [
"pydeps",
]
java = [
"jgo>=2.0.0",
]
rust = [
"tree-sitter>=0.24",
"tree-sitter-rust>=0.24",
]
all = [
"pydeps",
"jgo>=2.0.0",
"tree-sitter>=0.24",
"tree-sitter-rust>=0.24",
]
[dependency-groups]
dev = [
"build",
"pytest",
"ruff",
"validate-pyproject[all]",
]
[tool.uv.sources]
jgo = { path = "../jgo", editable = true }
[project.scripts]
codezoom = "codezoom.cli:main"
[tool.hatch.build.targets.sdist]
exclude = [
"/screenshots",
]