Initial commit.

This commit is contained in:
2025-08-18 17:14:54 +02:00
commit 9d1623c739
19 changed files with 2129 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[build-system]
requires = ["hatchling>=1.18.0"]
build-backend = "hatchling.build"
[project]
name = "pkm"
version = "0.1.0"
description = "Personal Knowledge Manager (Flask + Tailwind + DaisyUI)"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"Flask>=3.0",
"python-dotenv>=1.0",
"click>=8.1",
]
[project.optional-dependencies]
dev = []
[project.scripts]
pkm = "cli:main"