forked from b-init/ImagePaste
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (20 loc) · 685 Bytes
/
__init__.py
File metadata and controls
25 lines (20 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
bl_info = {
"name": "ImagePaste",
"author": "Binit",
"blender": (2, 80, 0),
"version": (1, 8, 2),
"category": "Import-Export",
"support": "COMMUNITY",
"doc_url": "https://github.com/b-init/ImagePaste#readme",
"tracker_url": "https://github.com/b-init/ImagePaste/issues",
"description": "Copy and paste your images with the clipboard in various places",
"location": "Image Editor, Video Sequencer, Shader Editor, 3D Viewport",
}
from .imagepaste import preferences
from .imagepaste import operators
def register():
preferences.register()
operators.register()
def unregister():
operators.unregister()
preferences.unregister()