21 lines
429 B
TOML
21 lines
429 B
TOML
[build-system]
|
|
requires = ["setuptools>=82.0.1", "wheel"]
|
|
|
|
[project]
|
|
name = "audio_server"
|
|
description = "a fastapi server serving whisper and piper"
|
|
version = "1.0.0"
|
|
authors = [
|
|
{ name = 'Milan', email = 'milan@mboemer.de' }
|
|
]
|
|
license = "GPL-3"
|
|
|
|
requires-python = '>=3.12'
|
|
|
|
dynamic = ["dependencies"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
dependencies = { file = ["requirements.txt"] }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ['src'] |