2024-12-05 00:30:27 +00:00
|
|
|
[project]
|
|
|
|
name = "buzon"
|
2024-12-22 03:22:16 +00:00
|
|
|
version = "0.2.1"
|
2024-12-05 00:30:27 +00:00
|
|
|
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 = [
|
2024-12-18 19:40:03 +00:00
|
|
|
"fastapi >= 0.115.5",
|
|
|
|
"paho-mqtt >= 1.6.1",
|
2024-12-18 20:42:59 +00:00
|
|
|
"pydantic >= 2.9.2",
|
2024-12-05 00:30:27 +00:00
|
|
|
"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" }
|
2024-12-19 00:47:01 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["flit_core >=3.2,<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|