forked from nallath/PostProcessingPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
21 lines (19 loc) · 725 Bytes
/
__init__.py
File metadata and controls
21 lines (19 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (c) 2015 Jaime van Kessel, Ultimaker B.V.
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
from . import PostProcessingPlugin
from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("PostProcessingPlugin")
def getMetaData():
return {
"type": "extension",
"plugin":
{
"name": "Post Processing",
"author": "Ultimaker",
"version": "15.06",
"api": 2,
"description": i18n_catalog.i18nc("Description of plugin","Extension that allows for user created scripts for post processing")
}
}
def register(app):
return { "extension": PostProcessingPlugin.PostProcessingPlugin()}