mirror of
https://github.com/Cinnamon/kotaemon.git
synced 2026-07-10 12:37:43 +02:00
* feat: support MCP tools and enhance resource updating with renaming capabilities. * chore: styling * tests: update unit tests * fix: hightlight error * fix: uv build in docker * fix: keep original action name
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools >= 61.0", "wheel", "setuptools-git-versioning>=2.0,<3"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
packages.find.exclude = ["ktem_tests*", "env*"]
|
|
packages.find.include = ["ktem*"]
|
|
|
|
[tool.setuptools-git-versioning]
|
|
enabled = true
|
|
dev_template = "{tag}"
|
|
dirty_template = "{tag}"
|
|
tag_filter = "v?\\d+(\\.\\d+)*.*"
|
|
|
|
[project]
|
|
name = "ktem"
|
|
dynamic = ["version"]
|
|
requires-python = ">= 3.10"
|
|
description = "RAG-based Question and Answering Application"
|
|
dependencies = [
|
|
"click>=8.1.7,<9",
|
|
"platformdirs>=4.2.1,<5",
|
|
"pluggy>=1.5.0,<2",
|
|
"python-decouple>=3.8,<4",
|
|
"SQLAlchemy>=2.0.29,<3",
|
|
"sqlmodel>=0.0.16,<0.1",
|
|
"tiktoken>=0.6.0,<1",
|
|
"gradio>=4.31.0,<5",
|
|
"gradiologin",
|
|
"python-multipart==0.0.12", # required for gradio, pinning to avoid yanking issues with micropip (fixed in gradio >= 5.4.0)
|
|
"markdown>=3.6,<4",
|
|
"tzlocal>=5.0",
|
|
"mcp>=1.0.0",
|
|
]
|
|
authors = [
|
|
{ name = "@trducng", email = "john@cinnamon.is" },
|
|
{ name = "@lone17", email = "ian@cinnamon.is" },
|
|
{ name = "@taprosoft", email = "tadashi@cinnamon.is" },
|
|
{ name = "@cin-albert", email = "albert@cinnamon.is" },
|
|
]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|