mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-11-04 14:16:57 +00:00
14 lines
345 B
Python
14 lines
345 B
Python
try:
|
|
from ._version import (
|
|
version as __version__, # type: ignore
|
|
version_tuple,
|
|
)
|
|
except ImportError:
|
|
__version__ = "unknown (no version information available)"
|
|
version_tuple = (0, 0, "unknown", "noinfo")
|
|
|
|
from pathlib import Path
|
|
|
|
PACKAGE = __package__.replace("_", "-")
|
|
PACKAGE_ROOT = Path(__file__).parent
|