iplotx 0.1.0__py3-none-any.whl → 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
iplotx/__init__.py CHANGED
@@ -1,2 +1,23 @@
1
+ """
2
+ iplotx is a library for interactive plotting of networks and trees in
3
+ matplotlib.
4
+
5
+ It guarantees the visualisation will look exactly the same no matter what
6
+ library was used to construct the network.
7
+ """
8
+
1
9
  from .version import __version__
2
- from .plotting import plot
10
+ from .plotting import (
11
+ network,
12
+ tree,
13
+ )
14
+
15
+ # Shortcut to iplotx.plotting.network
16
+ plot = network
17
+
18
+ __all__ = [
19
+ "network",
20
+ "tree",
21
+ "plot",
22
+ "__version__",
23
+ ]