···11+bl_info = {
22+ "name": "Stacker",
33+ "description": "A modern revival of Autodesk Slicer for Fusion 360",
44+ "author": "Tynan Purdy",
55+ "version": (0,1),
66+ "blender": (2,80,0), # minimum blender version required (no reference for what it should be so far)
77+ "support": "TESTING",
88+ "category": "Object"
99+}
1010+1111+import bpy
1212+1313+def register():
1414+ print("Hello there")
1515+1616+def unregister():
1717+ print("General Kenobi")
1818+1919+2020+# This allows you to run the script directly from Blender's Text editor
2121+# to test the add-on without having to install it.
2222+if __name__ == "__main__":
2323+ register()