Adds an 8th development stage that lets users keep a free-form journal alongside habit tracking, reusing the existing Google OAuth/DB/PWA infrastructure instead of a separate project. Users organize entries into custom categories, filter by a month calendar with day-detail drill-down, attach photos/videos (served via an authenticated route, never /static), tag entries, and pick multiple emotions per entry from a curated 9-option set. Includes a global journal prompt bank for lightweight guided journaling. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
33 lines
810 B
TOML
33 lines
810 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",
|
|
"pillow>=10.0", # scripts/generate_icons.py 아이콘 재생성 + 저널 첨부 이미지 썸네일 생성(런타임)
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"paramiko>=3.4", # scripts/deploy_sftp.py SFTP 배포용 (런타임 미사용)
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|