sms-handler/pyproject.toml

45 lines
944 B
TOML
Raw Normal View History

2024-12-01 00:53:31 +01:00
[project]
name = "sms_handler"
2025-06-26 18:49:27 +02:00
dynamic = ["version"]
2024-12-01 00:53:31 +01:00
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" }]
2025-06-26 18:58:07 +02:00
requires-python = ">=3.12"
2024-12-01 00:53:31 +01:00
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]
2025-06-26 18:49:27 +02:00
requires = ["hatchling", "uv-dynamic-versioning"]
2024-12-01 00:53:31 +01:00
build-backend = "hatchling.build"
2025-06-26 18:49:27 +02:00
[tool.hatch.version]
source = "uv-dynamic-versioning"
2024-12-01 00:53:31 +01:00
[tool.hatch.build.targets.wheel]
packages = ["src/sms_handler"]
2025-06-26 18:49:27 +02:00
[dependency-groups]
dev = [
"dunamai>=1.24.1",
"httpx>=0.28.1",
"pytest>=8.4.1",
"ipdb>=0.13.13",
"ipython>=8.30.0",
"pytest>=8.3.3",
]
2025-06-26 18:49:27 +02:00
[tool.uv-dynamic-versioning]
style = "semver"
[tool.uv]
extra-index-url = [
"https://code.philo.ydns.eu/api/packages/philorg/pypi/simple/",
]