__init__.py 777 B

1234567891011121314151617181920212223
  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: <DCCsi>/Editor/__init__.py"""
  12. from pathlib import Path
  13. import logging as _logging
  14. # -------------------------------------------------------------------------
  15. # global scope
  16. _DCCSI_SLUG = 'DccScriptingInterface'
  17. _PACKAGENAME = 'DCCsi.Editor'
  18. _LOGGER = _logging.getLogger(_PACKAGENAME)
  19. _LOGGER.debug('Initializing: {0}.'.format({_PACKAGENAME}))
  20. _MODULE_PATH = Path(__file__) # thos module should not be used as an entry
  21. __ALL__ = ['Scripts']