-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (14 loc) · 748 Bytes
/
__init__.py
File metadata and controls
19 lines (14 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Allow "from hapiplot import hapiplot"
from hapiplot.hapiplot import hapiplot
# Allow "from hapiplot import autoplot"
from hapiplot.autoplot.autoplot import autoplot
# Allow "from hapiplot import gallery"
from hapiplot.gallery.gallery import gallery
# This is needed because setopts reads all rcParams and adds passed rcParams.
# The default rcParams include those that are depricated and so a warning is
# generated when these rcParams are used with a context manager.
import warnings
# TODO: Only filter warnings about these specific rcParams.
#ignores = ['datapath','savefig.frameon', 'text.latex.unicode', 'verbose.fileo', 'verbose.level', 'datapath']
warnings.filterwarnings(action='ignore', category=UserWarning)
__version__ = '0.2.3b0'