Files
kotaemon/pyproject.toml
Khoi-Nguyen Nguyen-Ngoc 155e590720 feat: support MCP tools and enhance resource updating with renaming c… (#813)
* 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
2026-03-04 17:16:52 +07:00

69 lines
1.5 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 = false
packages.find.include = []
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}"
dirty_template = "{tag}"
tag_filter = "v?\\d+(\\.\\d+)*.*"
[project]
name = "kotaemon-app"
dynamic = ["version"]
requires-python = ">= 3.10"
description = "Kotaemon App"
dependencies = [
"kotaemon[all]",
"ktem"
]
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",
]
[tool.uv.sources]
kotaemon = { workspace = true }
ktem = { workspace = true }
# uv workspace configuration
[tool.uv.workspace]
members = ["libs/kotaemon", "libs/ktem"]
[dependency-groups]
dev = [
"black",
"coverage",
"flake8",
"ipython",
"pre-commit",
"pytest",
"pytest-mock",
"sphinx"
]
[project.urls]
Homepage = "https://cinnamon.github.io/kotaemon/"
Repository = "https://github.com/Cinnamon/kotaemon/"
Documentation = "https://cinnamon.github.io/kotaemon/"
[tool.codespell]
skip = "*.js,*.css,*.map"
# `llm` abbreviation for large language models
ignore-words-list = "llm,fo"
quiet-level = 3
check-filenames = ""
[tool.isort]
known_first_party = ["kotaemon"]