PySide6 app for capturing quick memories via voice or text, organized on a kanban board (On Docket → In Progress → Complete). Complete column is collapsible with 7d/30d/All date filters. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
575 B
TOML
28 lines
575 B
TOML
[project]
|
|
name = "my-memory"
|
|
version = "0.1.0"
|
|
description = "Low-friction capture app for thoughts, text, and voice"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"PySide6>=6.7",
|
|
"sounddevice>=0.5",
|
|
"soundfile>=0.12",
|
|
"faster-whisper>=1.1",
|
|
"pydantic>=2.0",
|
|
"python-frontmatter>=1.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
my-memory = "my_memory.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/my_memory"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|