Files
Notarius/pyproject.toml

29 lines
655 B
TOML

[project]
name = "notarius"
version = "0.1.0"
description = "Lokale Aufnahme, Transkription und KI-Zusammenfassung von Gesprächen"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"PySide6>=6.7",
"anthropic>=0.40",
"keyring>=25.0",
"whisperx",
]
[project.scripts]
notarius = "notarius.__main__:main"
notarius-install-launcher = "notarius.menu_launcher:main"
notarius-rec = "notarius.rec_cli:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
notarius = ["resources/*.md"]