implement basic app structure, add mockup GUI

This commit is contained in:
2025-12-22 16:10:28 +01:00
parent 9068fed848
commit adca7b7a2c
16 changed files with 1233 additions and 0 deletions

37
pyproject.toml Normal file
View File

@@ -0,0 +1,37 @@
[project]
name = "factum"
version = "0.0.0"
description = "Forensic note-taking application which utilizes PGP signatures on timestamped notes to ensure maximum integrity."
authors = [
{name = "Mario Stöckl", email = "mstoeck3@hs-mittweida.de"}
]
readme = "README.md"
requires-python = "==3.13.*"
license = {text = "BSD-3-Clause"}
dependencies = [
"PySide6~=6.8.0",
"logging>=0.4.9.6",
"openai~=2.8.1",
"python-dotenv~=1.2.1",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/factum"]
[tool.uv.workspace]
members = [
"factum",
]
[project.scripts]
factum = "factum.main:main"