__init__.py 347 B

12345678910111213141516171819
  1. """
  2. webnovel-writer scripts package
  3. This package contains all Python scripts for the webnovel-writer plugin.
  4. """
  5. __version__ = "5.4.0"
  6. __author__ = "lcy"
  7. # Expose main modules
  8. from . import security_utils
  9. from . import project_locator
  10. from . import chapter_paths
  11. __all__ = [
  12. "security_utils",
  13. "project_locator",
  14. "chapter_paths",
  15. ]