faultforge-cli 0.2.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.
- faultforge_cli-0.2.0/PKG-INFO +21 -0
- faultforge_cli-0.2.0/README.md +8 -0
- faultforge_cli-0.2.0/pyproject.toml +25 -0
- faultforge_cli-0.2.0/src/faultforge_cli/__init__.py +0 -0
- faultforge_cli-0.2.0/src/faultforge_cli/encoded_memory/__init__.py +9 -0
- faultforge_cli-0.2.0/src/faultforge_cli/encoded_memory/commands.py +713 -0
- faultforge_cli-0.2.0/src/faultforge_cli/encoded_memory/plots.py +395 -0
- faultforge_cli-0.2.0/src/faultforge_cli/encoded_memory/results.py +212 -0
- faultforge_cli-0.2.0/src/faultforge_cli/logging.py +122 -0
- faultforge_cli-0.2.0/src/faultforge_cli/main.py +24 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: faultforge-cli
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: CLI for FaultForge
|
|
5
|
+
Author: Marten Roots
|
|
6
|
+
Author-email: Marten Roots <marten.roots@gmail.com>
|
|
7
|
+
Requires-Dist: faultforge
|
|
8
|
+
Requires-Dist: matplotlib>=3.10.5
|
|
9
|
+
Requires-Dist: numpy>=2.3.1
|
|
10
|
+
Requires-Dist: typer>=0.20.0
|
|
11
|
+
Requires-Python: >=3.14
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# faultforge-cli
|
|
15
|
+
|
|
16
|
+
A `typer`-based CLI for [FaultForge](https://github.com/rezzubs/faultforge),
|
|
17
|
+
installing a `faultforge` command on top of the `faultforge` library.
|
|
18
|
+
|
|
19
|
+
See the [main repository](https://github.com/rezzubs/faultforge) for full
|
|
20
|
+
documentation, including the CLI usage covered in
|
|
21
|
+
[docs/experiments/encoded_memory.md](https://github.com/rezzubs/faultforge/blob/main/docs/experiments/encoded_memory.md).
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# faultforge-cli
|
|
2
|
+
|
|
3
|
+
A `typer`-based CLI for [FaultForge](https://github.com/rezzubs/faultforge),
|
|
4
|
+
installing a `faultforge` command on top of the `faultforge` library.
|
|
5
|
+
|
|
6
|
+
See the [main repository](https://github.com/rezzubs/faultforge) for full
|
|
7
|
+
documentation, including the CLI usage covered in
|
|
8
|
+
[docs/experiments/encoded_memory.md](https://github.com/rezzubs/faultforge/blob/main/docs/experiments/encoded_memory.md).
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "faultforge-cli"
|
|
3
|
+
version = "0.2.0"
|
|
4
|
+
description = "CLI for FaultForge"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Marten Roots", email = "marten.roots@gmail.com" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.14"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"faultforge",
|
|
12
|
+
"matplotlib>=3.10.5",
|
|
13
|
+
"numpy>=2.3.1",
|
|
14
|
+
"typer>=0.20.0",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.scripts]
|
|
18
|
+
faultforge = "faultforge_cli.main:main"
|
|
19
|
+
|
|
20
|
+
[tool.uv.sources]
|
|
21
|
+
faultforge = { workspace = true }
|
|
22
|
+
|
|
23
|
+
[build-system]
|
|
24
|
+
requires = ["uv-build>=0.1,<2"]
|
|
25
|
+
build-backend = "uv_build"
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""The `encoded-memory` CLI: recording experiments and plotting their results.
|
|
2
|
+
|
|
3
|
+
`commands` holds the `typer` commands; `results` and `plots` hold the
|
|
4
|
+
`compare`/`heatmap` workflow (see `results`' module docstring for a tour).
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from faultforge_cli.encoded_memory.commands import app
|
|
8
|
+
|
|
9
|
+
__all__ = ["app"]
|