-
Notifications
You must be signed in to change notification settings - Fork 4
/
repo.toml
60 lines (44 loc) · 1.71 KB
/
repo.toml
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
########################################################################################################################
# Repo tool base settings
########################################################################################################################
[repo]
logging = "warn"
# Reposiory Name. It is used for solution name and final package name
name = "ComfyUI-RTX_Remix"
########################################################################################################################
# Package publishing to packman
########################################################################################################################
[repo_publish]
enabled = true
packages = ["*"]
########################################################################################################################
# Packaging
########################################################################################################################
[repo_package]
[repo_package.packages.main_package]
default = true
omniverse_flow_version_scheme = true
archive_name = "${conf:repo.name}"
archive_format = "zip"
windows_max_path_length = 240
files = [
["**"],
]
files_exclude = [
["tools/**"],
["_*/**"],
["repo*"],
[".*"],
]
# python is formatted with black+isort:
[repo_format.python]
files.include = ["nodes/*.py"]
files.exclude = []
python_version = "py311"
job_count = 1
########################################################################################################################
# Python lint tool
########################################################################################################################
[repo_lint.flake8]
files.include = ["nodes/*.py"]
files.exclude = []