voltry 0.0.1__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.
- voltry-0.0.1/.gitignore +50 -0
- voltry-0.0.1/PKG-INFO +22 -0
- voltry-0.0.1/README.md +13 -0
- voltry-0.0.1/pyproject.toml +19 -0
voltry-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# --- OS / editor ---
|
|
2
|
+
.DS_Store
|
|
3
|
+
*.swp
|
|
4
|
+
.idea/
|
|
5
|
+
.vscode/
|
|
6
|
+
|
|
7
|
+
# --- Python ---
|
|
8
|
+
__pycache__/
|
|
9
|
+
*.py[cod]
|
|
10
|
+
*.egg-info/
|
|
11
|
+
.eggs/
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
.ruff_cache/
|
|
14
|
+
.mypy_cache/
|
|
15
|
+
.coverage
|
|
16
|
+
.coverage.*
|
|
17
|
+
coverage.xml
|
|
18
|
+
htmlcov/
|
|
19
|
+
.venv/
|
|
20
|
+
venv/
|
|
21
|
+
dist/
|
|
22
|
+
build/
|
|
23
|
+
|
|
24
|
+
# --- Node / TS ---
|
|
25
|
+
node_modules/
|
|
26
|
+
.next/
|
|
27
|
+
.turbo/
|
|
28
|
+
*.tsbuildinfo
|
|
29
|
+
out/
|
|
30
|
+
|
|
31
|
+
# --- Generated token outputs are committed? No — regenerated in CI ---
|
|
32
|
+
packages/tokens/dist/
|
|
33
|
+
apps/web/.next/
|
|
34
|
+
|
|
35
|
+
# --- Local secrets (never committed; enforced by hooks) ---
|
|
36
|
+
.env
|
|
37
|
+
.env.*
|
|
38
|
+
*.pem
|
|
39
|
+
*.key
|
|
40
|
+
|
|
41
|
+
# --- SBOM / scan artifacts (regenerated in CI) ---
|
|
42
|
+
sbom*.json
|
|
43
|
+
sbom*.xml
|
|
44
|
+
trivy-results.*
|
|
45
|
+
|
|
46
|
+
# Next.js generated
|
|
47
|
+
next-env.d.ts
|
|
48
|
+
|
|
49
|
+
# hypothesis example database
|
|
50
|
+
.hypothesis/
|
voltry-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: voltry
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Voltry: neutral, read-only GPU condition and provenance. This meta-package installs voltry-probe.
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: voltry-probe
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# voltry
|
|
11
|
+
|
|
12
|
+
This is a meta-package. Installing it installs `voltry-probe`, the open,
|
|
13
|
+
read-only Voltry agent, which provides the `voltry` command line.
|
|
14
|
+
|
|
15
|
+
You probably want one of:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pipx install voltry-probe
|
|
19
|
+
pip install voltry-probe
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
See the `voltry-probe` project page on PyPI for the operator quickstart.
|
voltry-0.0.1/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# voltry
|
|
2
|
+
|
|
3
|
+
This is a meta-package. Installing it installs `voltry-probe`, the open,
|
|
4
|
+
read-only Voltry agent, which provides the `voltry` command line.
|
|
5
|
+
|
|
6
|
+
You probably want one of:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
pipx install voltry-probe
|
|
10
|
+
pip install voltry-probe
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
See the `voltry-probe` project page on PyPI for the operator quickstart.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
# Meta-package: `pip install voltry` is what operators will type by reflex, so
|
|
3
|
+
# it must resolve to the real agent. No console script here — the `voltry`
|
|
4
|
+
# entry point belongs to voltry-probe and a duplicate would collide.
|
|
5
|
+
name = "voltry"
|
|
6
|
+
version = "0.0.1"
|
|
7
|
+
description = "Voltry: neutral, read-only GPU condition and provenance. This meta-package installs voltry-probe."
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
license = "Apache-2.0"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
dependencies = ["voltry-probe"]
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["hatchling"]
|
|
15
|
+
build-backend = "hatchling.build"
|
|
16
|
+
|
|
17
|
+
# Metapackage: nothing to select; ship an empty wheel that carries the dependency.
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
bypass-selection = true
|