Files
whisper-remote/cli/pyproject.toml
space c7eda49769
All checks were successful
CI / Backend (push) Successful in 28s
CI / CLI (push) Successful in 16s
Move code directly into backend and cli src
2026-05-24 12:46:40 +02:00

28 lines
527 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "whisper-remote-cli"
version = "0.1.0"
description = "CLI that forwards transcription requests to whisper-remote-backend"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.0,<1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0,<9.0.0",
]
[project.scripts]
whisper-remote = "main:main"
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.package-dir]
"" = "src"