- Flask backend with TinyDB database - Multi-user auth with bcrypt password hashing - Goal CRUD with activation/deactivation and per-user limits - Task CRUD with status tracking (todo/doing/pending/done) - Focus rule: one doing task per goal - Time picker-style scroll view with drag-and-drop reordering - Admin panel for user management - uv environment management
11 lines
202 B
TOML
11 lines
202 B
TOML
[project]
|
|
name = "goalsbreakdown"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"bcrypt>=5.0.0",
|
|
"flask>=3.1.3",
|
|
"tinydb>=4.8.2",
|
|
]
|