Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_mesh_stl/__init__.py')
-rw-r--r--io_mesh_stl/__init__.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 6a0154e6..04297d2c 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -16,6 +16,20 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ "name": "Import/Export: STL format",
+ "author": "Guillaume Bouchard (Guillaum)",
+ "version": "1",
+ "blender": (2, 5, 3),
+ "location": "File > Import/Export > Stl",
+ "description": "Import/Export Stl files",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/File I-O/STL",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=22837&group_id=153&atid=469",
+ "category": "Import/Export"}
+
+# @todo write the wiki page
+
"""
Import/Export STL files (binary or ascii)
@@ -33,20 +47,6 @@ Export:
- Export only one object (the selected one)
"""
-bl_addon_info = {
- 'name': 'Import/Export: STL format',
- 'author': 'Guillaume Bouchard (Guillaum)',
- 'version': '1',
- 'blender': (2, 5, 3),
- 'location': 'File > Import/Export > Stl',
- 'description': 'Import/Export Stl files',
- 'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
- 'Scripts/File I-O/STL', # @todo write the page
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?' \
- 'func=detail&aid=22837&group_id=153&atid=469',
- 'category': 'Import/Export'}
-
import bpy
from bpy.props import *