sms-handler/pyproject.toml

29 lines
668 B
TOML
Raw Normal View History

2024-12-01 00:53:31 +01:00
[project]
name = "sms_handler"
2024-12-05 05:45:08 +01:00
version = "0.0.6"
2024-12-01 00:53:31 +01:00
#dynamic = ["version"]
description = "Listen to messages from the SMS Forwarder app on Android and send mail"
readme = "README.md"
authors = [{ name = "phil", email = "phil.dev@philome.mooo.com" }]
requires-python = ">=3.11"
dependencies = [
"aiosmtplib>=3.0.2",
2024-12-01 05:01:45 +01:00
"fastapi>=0.115.5",
2024-12-01 00:53:31 +01:00
"pydantic-settings>=2.6.1",
2024-12-01 05:01:45 +01:00
"uvicorn>=0.32.1",
2024-12-01 00:53:31 +01:00
]
[project.scripts]
sms-handler = "sms_handler.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/sms_handler"]
[tool.uv]
package = true
2024-12-02 18:23:42 +01:00
dev-dependencies = ["httpx>=0.28.0", "pytest>=8.3.3"]