diff --git a/.gitignore b/.gitignore index 818dcce2..095ba23f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ __pycache__/* logs/side-packages-install.log .vscode/* +MolecularNodes* diff --git a/__init__.py b/__init__.py index 11f882b4..884ec2ce 100644 --- a/__init__.py +++ b/__init__.py @@ -15,20 +15,19 @@ bl_info = { "name" : "MolecularNodes", "author" : "Brady Johnston", - "description" : "Some more nodes", - "blender" : (3, 3, 0), - "version" : (2, 0, 0), - "location" : "Perth, Australia", + "description" : "Importer and nodes for working with structural biology data in Blender.", + "blender" : (3, 4, 0), + "version" : (2, 0, 1), + "location" : "Scene Properties -> MolecularNodes", "warning" : "", "doc_url" : "https://bradyajohnston.github.io/MolecularNodes/", "tracker_url" : "https://github.com/BradyAJohnston/MolecularNodes/issues", - "category" : "Molecular" + "category" : "Import" } import bpy from . import pkg from .pref import * -#pkg.install_packages() pkg.verify() from .load import * from .ui import *