Files
transcribble/pyproject.toml

34 lines
720 B
TOML

[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "transcribble"
version = "0.0.1"
description = "A simple tool for audio transcription"
readme = "README.md"
requires-python = ">=3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICENSE.md"]
dependencies = [
"numpy",
"openai-whisper",
"scikit-learn",
"speechbrain",
"torch",
]
[[project.authors]]
name = "Robert Hrusecky"
email = "robert@jadedpasta.net"
[project.urls]
Repository = "https://gitea.jadedpasta.net/jadedpasta/transcribble"
[project.scripts]
transcribble = "transcribble.cli:main"