-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathversion.py
More file actions
36 lines (30 loc) · 864 Bytes
/
version.py
File metadata and controls
36 lines (30 loc) · 864 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
33
34
35
36
"""
Version information for Luminance Stack Processor
"""
__version__ = "1.1.8"
__version_info__ = (1, 1, 8)
# Semantic versioning components
MAJOR = 1
MINOR = 1
PATCH = 8
# Build metadata
BUILD_DATE = "2025-10-02"
AUTHOR = "Sumit Chatterjee"
DESCRIPTION = "Professional HDR processing nodes using the Debevec Algorithm"
# ComfyUI compatibility
COMFYUI_MIN_VERSION = "0.1.0"
PYTHON_MIN_VERSION = "3.8"
def get_version_string():
"""Get formatted version string"""
return f"v{__version__}"
def get_full_version_info():
"""Get complete version information"""
return {
"version": __version__,
"version_info": __version_info__,
"build_date": BUILD_DATE,
"author": AUTHOR,
"description": DESCRIPTION,
"comfyui_min_version": COMFYUI_MIN_VERSION,
"python_min_version": PYTHON_MIN_VERSION
}