28 lines
636 B
TOML
28 lines
636 B
TOML
[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"
|