-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (23 loc) · 1.78 KB
/
__init__.py
File metadata and controls
28 lines (23 loc) · 1.78 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
"""
██╗ ██████╗ ██╗ ██╗██╗ ███████╗██████╗ ██████╗ ██╗ ██╗████████╗
██║██╔═══██╗██║ ██║██║ ██╔════╝██╔══██╗██╔═══██╗██║ ██║╚══██╔══╝
██║██║ ██║██║ ██║██║ ███████╗██████╔╝██║ ██║██║ ██║ ██║
██ ██║██║ ██║╚██╗ ██╔╝██║ ╚════██║██╔═══╝ ██║ ██║██║ ██║ ██║
╚█████╔╝╚██████╔╝ ╚████╔╝ ██║ ███████║██║ ╚██████╔╝╚██████╔╝ ██║
╚════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚══════╝╚═╝ ╚═════╝ ╚═════╝ ╚═╝
SPOUT support for ComfyUI
"""
__author__ = "Alexander G. Morano"
__email__ = "amorano@gmail.com"
from pathlib import Path
from cozy_comfyui.node import loader
# ==============================================================================
# === GLOBAL ===
# ==============================================================================
PACKAGE = "JOV_SPOUT"
WEB_DIRECTORY = "./web"
ROOT = Path(__file__).resolve().parent
NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS = loader(ROOT,
PACKAGE,
"core",
f"{PACKAGE} 💦")