rss2podcast/pyproject.toml
2025-05-20 15:32:43 +02:00

36 lines
858 B
TOML

[tool.poetry]
name = "rss2podcast"
version = "0.1.0"
description = ""
authors = ["Juraj Bednar <juraj@bednar.io>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
feedparser = "^6.0.11"
beautifulsoup4 = "^4.12.3"
markdownify = "^0.13.1"
lxml = "^5.3.0"
pytz = "^2024.2"
soundfile = "^0.12.1"
nltk = "^3.9.1"
pywhispercpp = "^1.2.0"
colorama = "^0.4.6"
styletts2 = { git = "https://github.com/jooray/StyleTTS2", branch = "main" }
markdown_to_speech = { git = "https://github.com/jooray/markdown2audio", branch = "main" }
phonemizer = "^3.3.0"
ollama = "^0.3.3"
trafilatura = "^1.12.2"
sqlalchemy = "^2.0.36"
[tool.poetry.group.web.dependencies]
flask = "^3.1.0"
flask-login = "^0.6.3"
psycopg2-binary = "^2.9.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"