File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
2
pyrolite: A set of tools for getting the most from your geochemical data.
3
3
"""
4
+
4
5
from ._version import get_versions
5
6
6
7
__version__ = get_versions ()["version" ]
16
17
17
18
logger = Handle (__name__ )
18
19
20
+ # initialise pandas accessors
21
+ from .comp import pyrocomp # noqa: E402
22
+ from .geochem import pyrochem # noqa: E402
23
+ from .plot import pyroplot # noqa: E402
24
+
19
25
20
26
def load_extensions (base = "pyrolite_" , replace = ["util" ]):
21
27
"""
@@ -41,9 +47,5 @@ def load_extensions(base="pyrolite_", replace=["util"]):
41
47
n = n .replace (r , "" )
42
48
setattr (extensions , n , m )
43
49
44
-
45
50
# _export_pyrolite_mplstyle() should be called in .plot import regardless
46
51
matplotlib .style .use ("pyrolite" )
47
-
48
- from . import _version
49
- __version__ = _version .get_versions ()['version' ]
You can’t perform that action at this time.
0 commit comments