__init__.py 515 B

1234567891011121314151617181920
  1. # Copyright (c) 2015 Ultimaker B.V.
  2. # Uranium is released under the terms of the LGPLv3 or higher.
  3. from . import CuraProfileWriter
  4. from UM.i18n import i18nCatalog
  5. catalog = i18nCatalog("cura")
  6. def getMetaData():
  7. return {
  8. "profile_writer": [
  9. {
  10. "extension": "curaprofile",
  11. "description": catalog.i18nc("@item:inlistbox", "Cura Profile")
  12. }
  13. ]
  14. }
  15. def register(app):
  16. return { "profile_writer": CuraProfileWriter.CuraProfileWriter() }