__init__.py 808 B

12345678910111213141516171819202122232425262728
  1. # coding:utf-8
  2. #!/usr/bin/python
  3. #
  4. # Copyright (c) Contributors to the Open 3D Engine Project.
  5. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  6. #
  7. # SPDX-License-Identifier: Apache-2.0 OR MIT
  8. #
  9. #
  10. # -------------------------------------------------------------------------
  11. """! @brief
  12. <DCCsi>/Editor/Scripts/__init__.py
  13. """
  14. import os
  15. from pathlib import Path
  16. import logging as _logging
  17. # -------------------------------------------------------------------------
  18. # global scope
  19. _DCCSI_SLUG = 'DccScriptingInterface'
  20. _PACKAGENAME = 'DCCsi.Editor.Scripts'
  21. _LOGGER = _logging.getLogger(_PACKAGENAME)
  22. _LOGGER.debug('Initializing: {0}.'.format({_PACKAGENAME}))
  23. _MODULE_PATH = Path(__file__) # thos module should not be used as an entry
  24. __ALL__ = ['about', 'ui']