28 lines
677 B
TOML
28 lines
677 B
TOML
[build-system]
|
|
requires = ["setuptools >= 61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = false
|
|
packages.find.include = []
|
|
|
|
[project]
|
|
name = "kotaemon-app"
|
|
version = "0.0.1"
|
|
requires-python = ">= 3.10"
|
|
description = "Kotaemon App"
|
|
dependencies = [
|
|
"kotaemon @ git+https://github.com/Cinnamon/kotaemon.git/@main#subdirectory=libs/kotaemon",
|
|
"ktem @ git+https://github.com/Cinnamon/kotaemon.git@main#subdirectory=libs/ktem"
|
|
]
|
|
|
|
[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"]
|