Files
IfcOpenShell/src/blenderbim/blenderbim/__init__.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.7 KiB
Python
Raw Normal View History

2021-08-17 08:55:29 +10:00
# BlenderBIM Add-on - OpenBIM Blender Add-on
# Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
#
# This file is part of BlenderBIM Add-on.
#
# BlenderBIM Add-on is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# BlenderBIM Add-on is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import site
2019-09-26 21:55:30 +10:00
bl_info = {
2019-11-17 12:29:02 +11:00
"name": "BlenderBIM",
"description": "Author, import, and export data using the Industry Foundation Classes schema",
"author": "IfcOpenShell Contributors",
2019-09-26 21:55:30 +10:00
"blender": (2, 80, 0),
"version": (0, 0, 999999),
2019-11-17 12:29:02 +11:00
"location": "File > Export, File > Import, Scene / Object / Material / Mesh Properties",
2020-03-22 15:25:57 +11:00
"tracker_url": "https://github.com/IfcOpenShell/IfcOpenShell/issues",
2020-11-01 20:08:48 +07:00
"category": "Import-Export",
}
2019-09-26 21:55:30 +10:00
if sys.modules.get("bpy", None):
# Process *.pth in /libs/site/packages to setup globally importable modules
# This is 3 levels deep as required by the static RPATH of ../../ from dependencies taken from Anaconda
site.addsitedir(os.path.join(os.path.dirname(os.path.realpath(__file__)), "libs", "site", "packages"))
import blenderbim.bim
2019-12-19 16:49:27 +11:00
def register():
blenderbim.bim.register()
2019-09-26 21:55:30 +10:00
def unregister():
blenderbim.bim.unregister()