transcribe-cpp 0.0.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.
@@ -0,0 +1,70 @@
1
+ # Build trees
2
+ /build/
3
+ /build-*/
4
+ /cmake-build-*/
5
+
6
+ # Scratch space for benchmarks, staging, etc.
7
+ /tmp/
8
+
9
+ # Editor / OS
10
+ .DS_Store
11
+ *.swp
12
+ *.swo
13
+ .idea/
14
+ .vscode/
15
+ *.iml
16
+
17
+ # Claude Code — local state ignored, but project-versioned skills are carved back in.
18
+ # Use .claude/* (not .claude/) so git can descend and honor the negations below.
19
+ .claude/*
20
+ !.claude/skills/
21
+
22
+ # Python (for converters under scripts/)
23
+ __pycache__/
24
+ *.py[cod]
25
+ .venv/
26
+ .uv/
27
+
28
+ # Generated artifacts that should not be committed
29
+ *.gguf
30
+ *.nemo
31
+ *.safetensors
32
+ *.onnx
33
+ *.onnx.data
34
+
35
+ # Local model artifacts (converter output, etc).
36
+ /models/
37
+
38
+ # Local-only fetched golden assets (kept out of git - they
39
+ # should be fetchable, not assumed present in every contributor environment)
40
+ /tests/golden/**/*.f32
41
+ /tests/golden/**/*.bin
42
+ /tests/golden/**/*.npy
43
+
44
+ # Symlinked references stash for editor grepping
45
+ /references/
46
+
47
+ # WER evaluation data + generated working reports.
48
+ /samples/wer/
49
+ /reports/*
50
+
51
+ # Reviewable porting evidence (intake, porting log) is intentionally committed.
52
+ !/reports/porting/
53
+ !/reports/porting/**
54
+
55
+ # ...but per-run preflight outputs and validate report bundles are ephemeral:
56
+ # they regenerate in seconds from committed inputs (manifest, tolerance, code).
57
+ # Committing them without CI adds clutter without verification. Paste their
58
+ # stdout into the PR description instead; the reviewer re-runs to verify.
59
+ /reports/porting/*/*/preflight-gate-*.json
60
+ /reports/porting/*/*/preflight-gate-*.md
61
+ /reports/porting/*/*/[0-9]*T[0-9]*Z-*/
62
+
63
+ # Internal planning docs (not committed)
64
+ PORTING.md
65
+ RESUME.md
66
+ PERF.md
67
+ WER_TESTING.md
68
+
69
+ # IDE / language-server artifacts
70
+ .cache/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 The transcribe.cpp authors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: transcribe-cpp
3
+ Version: 0.0.0
4
+ Summary: Python bindings for transcribe.cpp (pre-release name reservation placeholder)
5
+ Project-URL: Homepage, https://github.com/handy-computer/transcribe.cpp
6
+ Project-URL: Repository, https://github.com/handy-computer/transcribe.cpp
7
+ Project-URL: Issues, https://github.com/handy-computer/transcribe.cpp/issues
8
+ Author: The transcribe.cpp authors
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: asr,ggml,parakeet,speech-to-text,transcription,whisper
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+
21
+ # transcribe-cpp
22
+
23
+ Python bindings for [transcribe.cpp](https://github.com/handy-computer/transcribe.cpp),
24
+ a C/C++ speech-to-text library built on ggml.
25
+
26
+ > **Status: placeholder.** This release reserves the `transcribe-cpp` name on
27
+ > PyPI while the first-party bindings are developed. It ships no native code and
28
+ > exposes no transcription API yet. Watch the repository for the first
29
+ > functional release.
30
+
31
+ ```python
32
+ import transcribe_cpp
33
+
34
+ print(transcribe_cpp.__version__)
35
+ ```
36
+
37
+ - Import package: `transcribe_cpp`
38
+ - Distribution: `transcribe-cpp`
39
+ - License: MIT
@@ -0,0 +1,19 @@
1
+ # transcribe-cpp
2
+
3
+ Python bindings for [transcribe.cpp](https://github.com/handy-computer/transcribe.cpp),
4
+ a C/C++ speech-to-text library built on ggml.
5
+
6
+ > **Status: placeholder.** This release reserves the `transcribe-cpp` name on
7
+ > PyPI while the first-party bindings are developed. It ships no native code and
8
+ > exposes no transcription API yet. Watch the repository for the first
9
+ > functional release.
10
+
11
+ ```python
12
+ import transcribe_cpp
13
+
14
+ print(transcribe_cpp.__version__)
15
+ ```
16
+
17
+ - Import package: `transcribe_cpp`
18
+ - Distribution: `transcribe-cpp`
19
+ - License: MIT
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "transcribe-cpp"
7
+ version = "0.0.0"
8
+ description = "Python bindings for transcribe.cpp (pre-release name reservation placeholder)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [{ name = "The transcribe.cpp authors" }]
14
+ keywords = ["transcription", "speech-to-text", "asr", "ggml", "whisper", "parakeet"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Topic :: Multimedia :: Sound/Audio :: Speech",
21
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/handy-computer/transcribe.cpp"
26
+ Repository = "https://github.com/handy-computer/transcribe.cpp"
27
+ Issues = "https://github.com/handy-computer/transcribe.cpp/issues"
28
+
29
+ [tool.hatch.build.targets.wheel]
30
+ packages = ["src/transcribe_cpp"]
@@ -0,0 +1,12 @@
1
+ """Python bindings for transcribe.cpp.
2
+
3
+ This is a placeholder distribution that reserves the ``transcribe-cpp`` name on
4
+ PyPI while first-party bindings are under development. It intentionally ships no
5
+ native code yet, so importing it succeeds but no transcription API is available.
6
+
7
+ See https://github.com/handy-computer/transcribe.cpp for status.
8
+ """
9
+
10
+ __version__ = "0.0.0"
11
+
12
+ __all__ = ["__version__"]