phasorpy 0.7__cp314-cp314t-macosx_10_13_x86_64.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.
phasorpy/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """PhasorPy package."""
2
+
3
+ from __future__ import annotations
4
+
5
+ __all__ = ['__version__']
6
+
7
+
8
+ __version__ = '0.7'
9
+ """PhasorPy version string."""
phasorpy/__main__.py ADDED
@@ -0,0 +1,7 @@
1
+ """PhasorPy package command line interface."""
2
+
3
+ import sys
4
+
5
+ from . import cli
6
+
7
+ sys.exit(cli.main()) # pylint: disable=no-value-for-parameter