25 lines
552 B
TOML
25 lines
552 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "whisper-remote-backend"
|
|
version = "0.1.0"
|
|
description = "FastAPI wrapper around the openai/whisper CLI"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0,<1.0.0",
|
|
"python-multipart>=0.0.9,<1.0.0",
|
|
"uvicorn>=0.32.0,<1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
whisper-remote-server = "whisper_remote_backend.server:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"httpx>=0.28.0,<1.0.0",
|
|
"pytest>=8.3.0,<9.0.0",
|
|
]
|