forked from mne-tools/mne-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
34 lines (29 loc) · 826 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.
"""MNE software for MEG and EEG data analysis."""
# PEP0440 compatible formatted version, see:
# https://www.python.org/dev/peps/pep-0440/
#
# Generic release markers:
# X.Y
# X.Y.Z # For bugfix releases
#
# Admissible pre-release markers:
# X.YaN # Alpha release
# X.YbN # Beta release
# X.YrcN # Release Candidate
# X.Y # Final release
#
# Dev branch marker is: 'X.Y.devN' where N is an integer.
#
import lazy_loader as lazy
try:
from importlib.metadata import version
__version__ = version("mne")
except Exception:
__version__ = "0.0.0"
(__getattr__, __dir__, __all__) = lazy.attach_stub(__name__, __file__)
# initialize logging
from .utils import set_log_level, set_log_file
set_log_level(None, False)
set_log_file()