-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1013 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (35 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tenantq"
version = "0.1.0"
description = "Multi-tenant hybrid-search reference deployment on Qdrant with a benchmark harness."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "royalpinto007", email = "royalpinto007@gmail.com" }]
keywords = ["qdrant", "vector-search", "hybrid-search", "multitenancy", "rag", "benchmark"]
dependencies = [
"qdrant-client>=1.12",
"fastembed>=0.4",
"prometheus-client>=0.20",
"typer>=0.9",
]
[project.optional-dependencies]
dev = ["pytest>=7.4", "ruff>=0.5"]
[project.scripts]
tenantq = "tenantq.cli:main"
[project.urls]
Homepage = "https://github.com/AgentPostmortem/tenantq"
[tool.hatch.build.targets.wheel]
packages = ["src/tenantq"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E741"]