roifile 2025.12.12__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.
roifile/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ # roifile/__init__.py
2
+
3
+ from .roifile import *
4
+ from .roifile import __all__, __doc__, __version__
5
+
6
+ # constants are repeated for documentation
7
+
8
+ __version__ = __version__
9
+ """Roifile version string."""
roifile/__main__.py ADDED
@@ -0,0 +1,9 @@
1
+ # roifile/__main__.py
2
+
3
+ """Roifile package command line script."""
4
+
5
+ import sys
6
+
7
+ from .roifile import main
8
+
9
+ sys.exit(main())
roifile/py.typed ADDED
File without changes