[tool.poetry]
name = "StorageLeaf"
version = "1.1.0"
description = "Accepts sensor data and saves them into a database. The saved data can be accessed via api."
authors = ["TheCodeLabsDevs"]

[[tool.poetry.source]]
name = "TheCodeLabs"
url = "https://pypi.thecodelabs.de"
priority = "explicit"

[tool.poetry.dependencies]
python = "^3.9"
thecodelabs-baseutils = {version = "*", source = "TheCodeLabs" }
fastapi = "0.95.1"
uvicorn = "0.22.0"
sqlalchemy = "2.0.19"
apscheduler = "3.10.1"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"