Files
semeion/pyproject.toml
2025-11-26 10:08:26 +01:00

30 lines
571 B
TOML

[project]
name = "gamayun"
version = "0.0.0"
description = "Scalable vector search engine with focus on post-mortem forensics"
authors = [
{name = "Mario Stöckl", email = "mstoeck3@hs-mittweida.de"}
]
readme = "README.md"
requires-python = "~=3.13"
dependencies = [
"PySide6~=6.8.0",
"qdrant_client~=1.16.1",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gamayun"]
[project.scripts]
gamayun-cli = "gamayun.main:main"