initial commit

This commit is contained in:
2025-08-19 09:13:22 -07:00
parent 28464811d6
commit 0977a3e14d
820 changed files with 1003358 additions and 2 deletions

36
mne/__init__.py Normal file
View File

@@ -0,0 +1,36 @@
# Authors: The MNE-Python contributors.
# 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()