thg 0.1.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.
thg/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from thg!"
thg/cli.py ADDED
@@ -0,0 +1,12 @@
1
+ import sys
2
+
3
+
4
+ def main():
5
+ print("thg: Terminal Heat Graph stub.")
6
+ print("Usage: generate_data | thg")
7
+ # Eventually ... rendering logic goes here
8
+ # input_data = sys.stdin.read()
9
+
10
+
11
+ if __name__ == "__main__":
12
+ main()
thg/py.typed ADDED
File without changes
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.3
2
+ Name: thg
3
+ Version: 0.1.0
4
+ Summary: A terminal heatmap renderer for matrix-style data.
5
+ Author: Nicholas Wagner
6
+ Author-email: Nicholas Wagner <hello@nicholaswagner.dev>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+
@@ -0,0 +1,7 @@
1
+ thg/__init__.py,sha256=3uvTTpsygpJCENC1c0ShtZAnAKJxTPIW34lyvSDaXuM,49
2
+ thg/cli.py,sha256=cQ06cZmVW8ahD6SX-oQYIpBWQrLeWbQBEQVwe7rACt4,232
3
+ thg/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ thg-0.1.0.dist-info/WHEEL,sha256=s_zqWxHFEH8b58BCtf46hFCqPaISurdB9R1XJ8za6XI,80
5
+ thg-0.1.0.dist-info/entry_points.txt,sha256=Lw1Ff0XY7R0vRJFnt2S3YBUOqKNrV1NAqEnYJtn1YPg,38
6
+ thg-0.1.0.dist-info/METADATA,sha256=EJ22UEAJnOxFdDs19RyxdF79ywB92pJmM6Ict3Q86cI,253
7
+ thg-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.6
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ thg = thg.cli:main
3
+