setup project structure

This commit is contained in:
2025-11-26 10:08:26 +01:00
parent 22e4c4d4df
commit 534f996267
6 changed files with 169 additions and 3 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[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"