d9c87bd8f1
Eight-screen workflow: start → research → sources → storyline → draft → quality → publication → history. 2×2 provider grid for storyline and draft comparison. Inline text editing plus AI revision at draft and quality steps. Download and copy-to-clipboard for publication package. Session resume on startup. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
445 B
TOML
23 lines
445 B
TOML
[project]
|
|
name = "kniepunkt"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"anthropic>=0.49.0",
|
|
"streamlit>=1.35.0",
|
|
"openai>=1.0.0",
|
|
"google-genai>=1.0.0",
|
|
"mistralai>=1.0.0",
|
|
"rich>=13.0.0",
|
|
"pypdf>=4.0.0",
|
|
"python-docx>=1.1.0",
|
|
"odfpy>=1.4.1",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["kniepunkt*"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|