25 lines
526 B
TOML
25 lines
526 B
TOML
[project]
|
|
name = "takeyourmeds"
|
|
version = "1.0.0"
|
|
description = "Medikamenten-PWA mit Push-Erinnerungen und sarkastischem Humor"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.30",
|
|
"aiosqlite>=0.20",
|
|
"pydantic-settings>=2.2",
|
|
"python-dotenv>=1.0",
|
|
"pyjwt>=2.9",
|
|
"pyyaml>=6.0",
|
|
"httpx>=0.27",
|
|
"pywebpush>=2.0",
|
|
"apscheduler>=3.10",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=70", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["server"]
|