Initial commit
This commit is contained in:
commit
91ad1790e1
9 changed files with 3340 additions and 0 deletions
23
pyproject.toml
Normal file
23
pyproject.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[project]
|
||||
name = "mensa-tts"
|
||||
version = "0.1.0"
|
||||
description = "Generate an automated broadcast from DB0KL for the mensa menu"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.9.0,<3.12" # Because of TTS
|
||||
dependencies = [
|
||||
"librosa>=0.10.0",
|
||||
"requests>=2.32.3",
|
||||
"tts>=0.22.0",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = ["ruff>=0.8.3"]
|
||||
|
||||
[project.scripts]
|
||||
mensa_to_speech = "mensa_to_speech:main"
|
||||
fm_feed = "fm_feed:main"
|
||||
fm_feed_wav = "fm_feed_wav:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
Loading…
Add table
Add a link
Reference in a new issue