tinytrainlog 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.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: tinytrainlog
3
+ Version: 0.1.0
4
+ Summary: Tiny train logger
5
+ Keywords: pytorch,metrics,logging,training,machine-learning
6
+ Author: jdh
7
+ Author-email: jdh <you@example.com>
8
+ License-Expression: MIT
9
+ Requires-Python: >=3.12
10
+ Project-URL: Homepage, https://github.com/jdhouseholder/tinytrainlog
11
+ Description-Content-Type: text/markdown
12
+
13
+ # 🚅🚅🚅 Tiny Train Log 🚅🚅🚅
@@ -0,0 +1 @@
1
+ # 🚅🚅🚅 Tiny Train Log 🚅🚅🚅
@@ -0,0 +1,24 @@
1
+ [project]
2
+ name = "tinytrainlog"
3
+ version = "0.1.0"
4
+ description = "Tiny train logger"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "jdh", email = "you@example.com" }
8
+ ]
9
+ keywords = ["pytorch", "metrics", "logging", "training", "machine-learning"]
10
+ license = "MIT"
11
+ requires-python = ">=3.12"
12
+ dependencies = []
13
+
14
+ [build-system]
15
+ requires = ["uv_build>=0.10.4,<0.11.0"]
16
+ build-backend = "uv_build"
17
+
18
+ [dependency-groups]
19
+ dev = [
20
+ "pytest>=9.0.2",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/jdhouseholder/tinytrainlog"
@@ -0,0 +1,3 @@
1
+ from .metrics_logger import MetricsLogger
2
+
3
+ __all__ = ["MetricsLogger"]
@@ -0,0 +1,2 @@
1
+ class MetricsLogger:
2
+ pass
File without changes