20 lines
346 B
Python
20 lines
346 B
Python
"""
|
|
NovelMaster (noma) scripts package
|
|
|
|
This package contains all Python scripts for the NovelMaster plugin.
|
|
"""
|
|
|
|
__version__ = "5.5.4"
|
|
__author__ = "lcy"
|
|
|
|
# Expose main modules
|
|
from . import security_utils
|
|
from . import project_locator
|
|
from . import chapter_paths
|
|
|
|
__all__ = [
|
|
"security_utils",
|
|
"project_locator",
|
|
"chapter_paths",
|
|
]
|