buzon/pyproject.toml
2024-12-04 17:30:27 -07:00

31 lines
628 B
TOML

[project]
name = "buzon"
version = "0.1.0"
description = "MQTT webhook delivery service"
readme = "README.md"
authors = [
{ name = "Louis Abel", email = "label@rockylinux.org" }
]
maintainers = [
{ name = "Louis Abel", email = "label@rockylinux.org" }
]
requires-python = ">=3.9"
dependencies = [
"fastapi == 0.115.5",
"paho-mqtt == 1.6.1",
"pydantic == 2.9.2"
"uvicorn >= 0.29.0"
]
[project.urls]
"Homepage" = "https://git.resf.org/infrastructure/buzon"
"Bug Tracker" = "https://git.resf.org/infrastructure/buzon/issues"
[project.license]
file = "LICENSE"
[tool.setuptools]
package-dir = { "buzon" = "buzon" }