workloadtruth-cli 0.1.1__tar.gz → 0.1.2__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.
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/CHANGELOG.md +6 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/PKG-INFO +4 -2
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/npm-shim/package.json +1 -1
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/pyproject.toml +4 -2
- workloadtruth_cli-0.1.2/src/workloadtruth/__init__.py +1 -0
- workloadtruth_cli-0.1.1/src/workloadtruth/__init__.py +0 -1
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.github/CODEOWNERS +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.github/workflows/ci.yml +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.github/workflows/no-internal-docs.yml +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.github/workflows/publish-npm.yml +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.github/workflows/publish-pypi.yml +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.gitignore +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/.well-known/agent.json +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/CONTRIBUTING.md +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/LICENSE +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/README.md +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/SECURITY.md +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/docs/demo.gif +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/docs/demo.tape +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/npm-shim/bin/workloadtruth-cli.js +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/npm-shim/package-lock.json +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/scripts/check-no-internal-docs.sh +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/audit_log.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/benchmark.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/classifier/__init__.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/classifier/experimental.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/classifier/rules.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/cli.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/mcp_server.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/telemetry/__init__.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/telemetry/base.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/telemetry/nvml_backend.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/telemetry/synthetic_backend.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/types.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/tests/test_audit_log.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/tests/test_benchmark.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/tests/test_classifier.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/tests/test_cli.py +0 -0
- {workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/tests/test_synthetic_backend.py +0 -0
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2 -- 2026-07-19
|
|
4
|
+
|
|
5
|
+
Metadata-only release. Adds the second co-author (Sourav Nandy) to PyPI's
|
|
6
|
+
`authors`/`project.urls`, matching this maintainer's other published
|
|
7
|
+
`-cli` packages. No code changes.
|
|
8
|
+
|
|
3
9
|
## 0.1.1 -- 2026-07-19
|
|
4
10
|
|
|
5
11
|
Docs-only release. README gets a real demo GIF, a table of contents, a
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: workloadtruth-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Classify a GPU workload as inference or training from telemetry alone, no application changes required.
|
|
5
5
|
Project-URL: Homepage, https://github.com/RudrenduPaul/WorkloadTruth
|
|
6
6
|
Project-URL: Repository, https://github.com/RudrenduPaul/WorkloadTruth
|
|
7
7
|
Project-URL: Issues, https://github.com/RudrenduPaul/WorkloadTruth/issues
|
|
8
8
|
Project-URL: Changelog, https://github.com/RudrenduPaul/WorkloadTruth/blob/main/CHANGELOG.md
|
|
9
|
-
|
|
9
|
+
Project-URL: Author - Rudrendu Paul, https://github.com/RudrenduPaul
|
|
10
|
+
Project-URL: Author - Sourav Nandy, https://github.com/Sourav-nandy-ai
|
|
11
|
+
Author: Rudrendu Paul, Sourav Nandy
|
|
10
12
|
License-Expression: Apache-2.0
|
|
11
13
|
License-File: LICENSE
|
|
12
14
|
Keywords: agent-tools,ai-governance,compute-monitoring,cuda,finops,gpu,mcp,mlops,nvml,observability
|
|
@@ -4,12 +4,12 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "workloadtruth-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Classify a GPU workload as inference or training from telemetry alone, no application changes required."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
11
11
|
requires-python = ">=3.9"
|
|
12
|
-
authors = [{ name = "Rudrendu Paul" }]
|
|
12
|
+
authors = [{ name = "Rudrendu Paul" }, { name = "Sourav Nandy" }]
|
|
13
13
|
keywords = [
|
|
14
14
|
"gpu",
|
|
15
15
|
"nvml",
|
|
@@ -54,6 +54,8 @@ Homepage = "https://github.com/RudrenduPaul/WorkloadTruth"
|
|
|
54
54
|
Repository = "https://github.com/RudrenduPaul/WorkloadTruth"
|
|
55
55
|
Issues = "https://github.com/RudrenduPaul/WorkloadTruth/issues"
|
|
56
56
|
Changelog = "https://github.com/RudrenduPaul/WorkloadTruth/blob/main/CHANGELOG.md"
|
|
57
|
+
"Author - Rudrendu Paul" = "https://github.com/RudrenduPaul"
|
|
58
|
+
"Author - Sourav Nandy" = "https://github.com/Sourav-nandy-ai"
|
|
57
59
|
|
|
58
60
|
[project.scripts]
|
|
59
61
|
workloadtruth = "workloadtruth.cli:main"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.2"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/classifier/__init__.py
RENAMED
|
File without changes
|
{workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/classifier/experimental.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/telemetry/nvml_backend.py
RENAMED
|
File without changes
|
{workloadtruth_cli-0.1.1 → workloadtruth_cli-0.1.2}/src/workloadtruth/telemetry/synthetic_backend.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|