c1c8f31539
Switch Gemini from deprecated google-generativeai to google-genai. Fix Mistral import path to mistralai.client.Mistral (v2.x layout). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
420 B
TOML
22 lines
420 B
TOML
[project]
|
|
name = "kniepunkt"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"anthropic>=0.49.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"
|