30 lines
574 B
TOML
30 lines
574 B
TOML
[build-system]
|
|
requires = ["setuptools>=82.0.1", "wheel"]
|
|
|
|
[project]
|
|
name = "audio_server"
|
|
description = "a fastapi server serving whisper and piper"
|
|
version = "2.0.0"
|
|
authors = [
|
|
{ name = 'Milan', email = 'milan@mboemer.de' }
|
|
]
|
|
license = "GPL-3.0"
|
|
|
|
requires-python = '>=3.12'
|
|
|
|
dependencies = [
|
|
"faster-whisper~=1.2.1",
|
|
"fastapi~=0.140.13",
|
|
"psutil~=7.2.2",
|
|
"uvicorn~=0.51.0",
|
|
"starlette~=1.3.1",
|
|
"python-multipart~=0.0.24",
|
|
"aiofiles~=25.1.0",
|
|
"piper-tts~=1.6.0",
|
|
"PyYAML~=6.0.3",
|
|
]
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ['src'] |