__init__.py 769 B

12345678910111213141516171819202122232425
  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. # standard imports
  12. import logging as _logging
  13. # define api package for each IDE supported
  14. # global scope
  15. from DccScriptingInterface.azpy import _PACKAGENAME
  16. _PACKAGENAME = f'{_PACKAGENAME}.dev'
  17. _LOGGER = _logging.getLogger(_PACKAGENAME)
  18. _LOGGER.debug('Initializing: {0}.'.format({_PACKAGENAME}))
  19. from DccScriptingInterface.globals import *
  20. __all__ = ['ide', 'utils']
  21. # -------------------------------------------------------------------------