Initial commit
This commit is contained in:
commit
2463355b0b
11 changed files with 1029 additions and 0 deletions
27
pyproject.toml
Normal file
27
pyproject.toml
Normal file
|
@ -0,0 +1,27 @@
|
|||
[project]
|
||||
name = "sms_handler"
|
||||
version = "0.0.0"
|
||||
#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",
|
||||
"fastapi[standard]>=0.115.5",
|
||||
"pydantic-settings>=2.6.1",
|
||||
]
|
||||
|
||||
[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
|
||||
dev-dependencies = ["pytest>=8.3.3"]
|
Loading…
Add table
Add a link
Reference in a new issue