thg 0.1.0__tar.gz
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-0.1.0/PKG-INFO +9 -0
- thg-0.1.0/README.md +0 -0
- thg-0.1.0/pyproject.toml +17 -0
- thg-0.1.0/src/thg/__init__.py +2 -0
- thg-0.1.0/src/thg/cli.py +12 -0
- thg-0.1.0/src/thg/py.typed +0 -0
thg-0.1.0/PKG-INFO
ADDED
|
@@ -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
|
+
|
thg-0.1.0/README.md
ADDED
|
File without changes
|
thg-0.1.0/pyproject.toml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "thg"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "A terminal heatmap renderer for matrix-style data."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Nicholas Wagner", email = "hello@nicholaswagner.dev" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.12"
|
|
10
|
+
dependencies = []
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["uv_build>=0.11.6,<0.12.0"]
|
|
14
|
+
build-backend = "uv_build"
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
thg = "thg.cli:main"
|
thg-0.1.0/src/thg/cli.py
ADDED
|
File without changes
|