2022-01-19 11:07:43 +11:00
|
|
|
# BIMTester - OpenBIM Auditing Tool
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
|
|
|
#
|
|
|
|
|
# This file is part of BIMTester.
|
|
|
|
|
#
|
|
|
|
|
# BIMTester is free software: you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# BIMTester 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 Lesser General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
# along with BIMTester. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2025-12-19 18:53:04 +05:00
|
|
|
from os.path import dirname, realpath
|
2020-11-23 09:34:13 +01:00
|
|
|
|
2024-07-17 20:50:29 +10:00
|
|
|
__version__ = version = "0.0.0"
|
2020-11-23 09:34:13 +01:00
|
|
|
|
2020-11-30 07:49:03 +01:00
|
|
|
package_path = dirname(realpath(__file__))
|