Files
auracaster-webui/pyproject.toml
2025-03-20 11:56:54 +01:00

26 lines
599 B
TOML

[tool.poetry]
name = "auracaster-webui"
version = "0.1.0"
authors = ["Patrick S <pstruebi>"]
description = "Announcement System"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12"
streamlit=">1.25.0"
requests=">2.28.0"
fastapi=">0.95.0"
uvicorn=">0.22.0"
pydantic=">1.10.0"
auracast-translator = {path = "../auracast-translator"}
[tool.poetry.dev-dependencies]
pytest=">7.0.0"
[tool.poetry.scripts]
auracaster-webui = "auracaster_webui.main:run_app"
auracaster-mock = "mock_backend.main:run_mock"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"