-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 753 Bytes
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
[project]
name = "uml-gen"
version = "1.0.1"
description = "Generate UML diagrams from source code."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pyyaml>=6.0.3",
"tree-sitter>=0.25.2",
"tree-sitter-java>=0.23.5",
]
[project.scripts]
umlc = "umlgen_pkg.umlc:main"
umls = "umlgen_pkg.umls:main"
umlc-gen = "umlgen_pkg.umlc_gen:main"
umls-gen = "umlgen_pkg.umls_gen:main"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
# Map package roots to uml/.gen.
[tool.setuptools.package-dir]
"" = "uml/.gen"
# Auto-discover packages (umlgen_pkg and umlgen_pkg.frontends).
[tool.setuptools.packages.find]
where = ["uml/.gen"]
[tool.setuptools.package-data]
umlgen_pkg = ["mark.txt"]