forked from NVIDIAGameWorks/ComfyUI-RTX-Remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepo_tools.toml
More file actions
28 lines (25 loc) · 851 Bytes
/
repo_tools.toml
File metadata and controls
28 lines (25 loc) · 851 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
[repo_class_docs]
# Tool name
command = "class_docs"
# [python module name or path]:[function name]
entry_point = "${root}/tools/utils/class_docs.py:setup_repo_tool"
# Python install to use
python_install = "${root}/../../../python_embeded/python.exe"
# Root module to import
module_name = "nodes"
module = "${root}/nodes/__init__.py"
# README to modify
file_path = "${root}/README.md"
# Header of section where change is required
section_header = "## Nodes"
[repo_get_release_changelog]
# Tool name
command = "get_release_changelog"
# [python module name or path]:[function name]
entry_point = "${root}/tools/utils/repo_get_release_changelog.py:setup_repo_tool"
# Name of required file
file_name = "CHANGELOG.md"
# Header of section where change is required
section_header = "[Unreleased]"
# Pattern delineating sections
section_pattern = "\n## "