File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 1- """Various useful tools that we developed.
1+ """Various useful tools that we developed in the Zwicker Group .
22
33.. codeauthor:: David Zwicker <[email protected] > 44"""
55
6+ # determine the package version
7+ try :
8+ # try reading version of the automatically generated module
9+ from ._version import __version__
10+ except ImportError :
11+ # determine version automatically from CVS information
12+ from importlib .metadata import PackageNotFoundError , version
13+
14+ try :
15+ __version__ = version ("utilitiez" )
16+ except PackageNotFoundError :
17+ # package is not installed, so we cannot determine any version
18+ __version__ = "unknown"
19+ del PackageNotFoundError , version # clean name space
20+
21+ # import the functions provided by the package
622from .densityplot import densityplot
723from .mathematics import *
You can’t perform that action at this time.
0 commit comments