church_archive_script/Programs/vsutil/__init__.py

22 lines
519 B
Python
Raw Permalink Normal View History

2023-11-29 16:12:35 +00:00
"""
VSUtil. A collection of general-purpose VapourSynth functions to be reused in modules and scripts.
"""
# export all public function directly
from .clips import *
from .func import *
from .info import *
from .types import *
# for wildcard imports
_mods = ['clips', 'func', 'info', 'types']
__all__ = []
for _pkg in _mods:
__all__ += __import__(__name__ + '.' + _pkg, fromlist=_mods).__all__
try:
from ._metadata import __author__, __version__
except ImportError:
__author__ = __version__ = 'unknown'