- rebrand from 습관 트래커 to 해빗랩 across templates, manifest, service worker - add HTTPS redirect middleware for reverse-proxied deployments - add public landing page (/) and privacy policy page with real data handling disclosures - add in-app account deletion (Apple review requirement) - add Android TWA Digital Asset Links support (/.well-known/assetlinks.json) - add SFTP deployment script for the Synology-hosted server Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
33 lines
781 B
TOML
33 lines
781 B
TOML
[project]
|
|
name = "habit-tracker"
|
|
version = "0.1.0"
|
|
description = "개인용 습관 관리 PWA"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.32",
|
|
"sqlalchemy>=2.0",
|
|
"alembic>=1.13",
|
|
"pymysql>=1.1",
|
|
"pydantic-settings>=2.5",
|
|
"jinja2>=3.1",
|
|
"python-multipart>=0.0.9",
|
|
"itsdangerous>=2.2",
|
|
"bcrypt>=4.0",
|
|
"apscheduler>=3.10",
|
|
"pywebpush>=2.0",
|
|
"py-vapid>=1.9",
|
|
"authlib>=1.3",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pillow>=10.0", # scripts/generate_icons.py 아이콘 재생성용 (런타임 미사용)
|
|
"paramiko>=3.4", # scripts/deploy_sftp.py SFTP 배포용 (런타임 미사용)
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|