Skip to content

Commit 2f9b68b

Browse files
committed
updated the init file to be more readable and informative
1 parent 3d6d958 commit 2f9b68b

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

src/ethoscopy/__init__.py

+32-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,37 @@
1+
"""
2+
Ethoscopy: A Python package for behavioral analysis of Drosophila data.
3+
4+
This package provides tools for loading, analyzing and visualizing ethoscope data.
5+
"""
6+
17
from ethoscopy.behavpy import behavpy
2-
from ethoscopy.load import download_from_remote_dir, link_meta_index, load_ethoscope, load_ethoscope_metadata
3-
from ethoscopy.analyse import max_velocity_detector, sleep_annotation, stimulus_response, stimulus_prior
8+
from ethoscopy.load import (
9+
download_from_remote_dir,
10+
link_meta_index,
11+
load_ethoscope,
12+
load_ethoscope_metadata
13+
)
14+
from ethoscopy.analyse import (
15+
max_velocity_detector,
16+
sleep_annotation,
17+
stimulus_response,
18+
stimulus_prior
19+
)
420
from ethoscopy.misc.general_functions import concat
521

622
import importlib.metadata
723

8-
__version__ = importlib.metadata.version("ethoscopy")
24+
__version__ = importlib.metadata.version("ethoscopy")
25+
26+
__all__ = [
27+
'behavpy',
28+
'download_from_remote_dir',
29+
'link_meta_index',
30+
'load_ethoscope',
31+
'load_ethoscope_metadata',
32+
'max_velocity_detector',
33+
'sleep_annotation',
34+
'stimulus_response',
35+
'stimulus_prior',
36+
'concat'
37+
]

0 commit comments

Comments
 (0)