rogallo 0.0.1__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.
rogallo/__init__.py ADDED
@@ -0,0 +1 @@
1
+ ### __init__.py ends here
rogallo/__main__.py ADDED
@@ -0,0 +1,12 @@
1
+ """Provides the main entry point for the application."""
2
+
3
+ ##############################################################################
4
+ def main() -> None:
5
+ """Main entry point for the rogallo application."""
6
+ print("Hello from rogallo!")
7
+
8
+ ##############################################################################
9
+ if __name__ == "__main__":
10
+ main()
11
+
12
+ ### __main__.py ends here
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.3
2
+ Name: rogallo
3
+ Version: 0.0.1
4
+ Summary: Coming soon
5
+ Author: Dave Pearson
6
+ Author-email: Dave Pearson <davep@davep.org>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+
10
+ # Rogallo
11
+
12
+ Coming soon.
13
+
14
+ [//]: # (README.md ends here)
@@ -0,0 +1,6 @@
1
+ rogallo/__init__.py,sha256=5UYByt4L4lKollHHr7PqveRcDhqmlRH1DM3J_aC51jE,26
2
+ rogallo/__main__.py,sha256=p26H2HVdOcXgn9eYnUfENXgK5Mx_EnKRucK8Go6BxyE,391
3
+ rogallo-0.0.1.dist-info/WHEEL,sha256=8ZlpUMJ7mlDirmlHRhDirEx_nPnARrwDjeE92mlk68E,81
4
+ rogallo-0.0.1.dist-info/entry_points.txt,sha256=FS4pLYH2iU71PCCd29lHJJNCjqsCgAAZeAGFJ-brCz4,51
5
+ rogallo-0.0.1.dist-info/METADATA,sha256=Qs5XUeMZLFT_qFNin1Yr_4oV5hCxYAnNvB-zjgRXgZE,258
6
+ rogallo-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.21
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ rogallo = rogallo.__main__:main
3
+