Initial commit: Calliope voice-to-text macOS menu bar app

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
syntaxbullet
2026-02-17 15:08:53 +01:00
commit 7cbf2d04a9
15 changed files with 1431 additions and 0 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "calliope"
version = "0.1.0"
description = "Voice-to-text for macOS — speak and type into any app"
requires-python = ">=3.10"
dependencies = [
"rumps>=0.4.0",
"sounddevice>=0.4.6",
"numpy>=1.24.0",
"torch>=2.0.0",
"transformers>=4.36.0",
"accelerate>=0.25.0",
"pynput>=1.7.6",
"pyobjc-framework-Quartz>=9.0",
"pyobjc-framework-Cocoa>=9.0",
"pyobjc-framework-AVFoundation>=9.0",
"rich>=13.0.0",
"click>=8.1.0",
"pyyaml>=6.0",
]
[project.scripts]
calliope = "calliope.app:main"