onepool 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.
- onepool-0.0.1/.github/workflows/ci.yml +23 -0
- onepool-0.0.1/.gitignore +27 -0
- onepool-0.0.1/LICENSE +661 -0
- onepool-0.0.1/PKG-INFO +84 -0
- onepool-0.0.1/README.md +57 -0
- onepool-0.0.1/TRADEMARK.md +32 -0
- onepool-0.0.1/docs/architecture.md +64 -0
- onepool-0.0.1/pyproject.toml +66 -0
- onepool-0.0.1/src/onepool/__init__.py +3 -0
- onepool-0.0.1/src/onepool/cli/__init__.py +1 -0
- onepool-0.0.1/src/onepool/cli/main.py +112 -0
- onepool-0.0.1/src/onepool/hw/__init__.py +5 -0
- onepool-0.0.1/src/onepool/hw/doctor.py +105 -0
- onepool-0.0.1/src/onepool/hw/probe.py +305 -0
- onepool-0.0.1/tests/test_hw.py +100 -0
- onepool-0.0.1/uv.lock +290 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: ci
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
strategy:
|
|
11
|
+
fail-fast: false
|
|
12
|
+
matrix:
|
|
13
|
+
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
14
|
+
python: ["3.10", "3.13"]
|
|
15
|
+
runs-on: ${{ matrix.os }}
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
- uses: astral-sh/setup-uv@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: ${{ matrix.python }}
|
|
21
|
+
- run: uv sync
|
|
22
|
+
- run: uv run ruff check .
|
|
23
|
+
- run: uv run pytest -v
|
onepool-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
.venv/
|
|
8
|
+
venv/
|
|
9
|
+
|
|
10
|
+
# Tooling
|
|
11
|
+
.pytest_cache/
|
|
12
|
+
.ruff_cache/
|
|
13
|
+
.coverage
|
|
14
|
+
htmlcov/
|
|
15
|
+
|
|
16
|
+
# uv
|
|
17
|
+
# uv.lock is committed — do not ignore
|
|
18
|
+
|
|
19
|
+
# Editors / OS
|
|
20
|
+
.vscode/
|
|
21
|
+
.idea/
|
|
22
|
+
.DS_Store
|
|
23
|
+
Thumbs.db
|
|
24
|
+
|
|
25
|
+
# onepool runtime artifacts
|
|
26
|
+
checkpoints/
|
|
27
|
+
*.log
|