hyperframes-vst-host 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.
- hyperframes_vst_host-0.1.0/.github/workflows/ci.yml +19 -0
- hyperframes_vst_host-0.1.0/.github/workflows/publish.yml +23 -0
- hyperframes_vst_host-0.1.0/.gitignore +7 -0
- hyperframes_vst_host-0.1.0/LICENSE +675 -0
- hyperframes_vst_host-0.1.0/PKG-INFO +14 -0
- hyperframes_vst_host-0.1.0/README.md +178 -0
- hyperframes_vst_host-0.1.0/pyproject.toml +37 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/__init__.py +0 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/__main__.py +78 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/bounce.py +19 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/carve.py +90 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/chain.py +120 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/scan.py +88 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/server.py +417 -0
- hyperframes_vst_host-0.1.0/src/hyperframes_vst/stream.py +101 -0
- hyperframes_vst_host-0.1.0/tests/test_bounce.py +92 -0
- hyperframes_vst_host-0.1.0/tests/test_carve.py +47 -0
- hyperframes_vst_host-0.1.0/tests/test_carve_bounce.py +50 -0
- hyperframes_vst_host-0.1.0/tests/test_carve_cli.py +33 -0
- hyperframes_vst_host-0.1.0/tests/test_chain.py +96 -0
- hyperframes_vst_host-0.1.0/tests/test_scan.py +38 -0
- hyperframes_vst_host-0.1.0/tests/test_server.py +649 -0
- hyperframes_vst_host-0.1.0/tests/test_stream.py +57 -0
- hyperframes_vst_host-0.1.0/uv.lock +390 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
# macOS: the sidecar's native-plugin paths (AU, editor windows, plugin
|
|
11
|
+
# scanning defaults) are macOS-centric, and pedalboard ships mac wheels.
|
|
12
|
+
runs-on: macos-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- uses: astral-sh/setup-uv@v5
|
|
16
|
+
- name: Install dependencies
|
|
17
|
+
run: uv sync
|
|
18
|
+
- name: Run tests
|
|
19
|
+
run: uv run pytest -q
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
publish:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
# Must match the environment name registered with PyPI's trusted
|
|
11
|
+
# publisher config for this repo — the OIDC token is scoped to it.
|
|
12
|
+
environment: pypi
|
|
13
|
+
permissions:
|
|
14
|
+
# Required for PyPI trusted publishing (OIDC token exchange).
|
|
15
|
+
id-token: write
|
|
16
|
+
contents: read
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v4
|
|
19
|
+
- uses: astral-sh/setup-uv@v5
|
|
20
|
+
- name: Build sdist + wheel
|
|
21
|
+
run: uv build
|
|
22
|
+
- name: Publish (trusted publishing — no token needed)
|
|
23
|
+
run: uv publish
|