brainunit 0.0.0.1__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
brainunit/__init__.py ADDED
@@ -0,0 +1,29 @@
1
+ # Copyright 2024 BDP Ecosystem Limited. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ # ==============================================================================
15
+
16
+ __version__ = "0.0.0.1"
17
+
18
+ from . import math
19
+ from ._base import *
20
+ from ._base import __all__ as _base_all
21
+ from ._unit_common import *
22
+ from ._unit_common import __all__ as _common_all
23
+ from ._unit_constants import *
24
+ from ._unit_constants import __all__ as _constants_all
25
+ from ._unit_shortcuts import *
26
+ from ._unit_shortcuts import __all__ as _std_units_all
27
+
28
+ __all__ = ['math'] + _common_all + _std_units_all + _constants_all + _base_all
29
+ del _common_all, _std_units_all, _constants_all, _base_all