-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (107 loc) · 3.46 KB
/
Copy pathpyproject.toml
File metadata and controls
116 lines (107 loc) · 3.46 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = ["setuptools>=68.0", "wheel", "maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "pyvectorhound"
version = "1.5.0"
description = "Diagnostic tool for vector search failures in RAG and LLM systems. Evaluate embedding quality, analyze vector search rank correlation, benchmark BM25 vs semantic search, profile reranker performance. Identify root cause of retrieval failures."
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
authors = [{ name = "Georgi Mammen Mullassery", email = "mullassery@gmail.com" }]
maintainers = [{ name = "Georgi Mammen Mullassery", email = "mullassery@gmail.com" }]
keywords = [
"rag",
"retrieval-augmented-generation",
"vector-search",
"embedding",
"semantic-search",
"llm",
"large-language-models",
"information-retrieval",
"search-ranking",
"evaluation-metrics",
"bm25",
"reranking",
"debugging",
"diagnostics",
"nlp",
"natural-language-processing",
"similarity-search",
"faiss",
"elasticsearch",
"pinecone",
"milvus",
"ai-debugging"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=1.21,<3",
"requests>=2.28,<3",
"python-frontmatter>=1.0.0,<1.2.0",
"pydantic>=2.0,<3",
]
[project.optional-dependencies]
qdrant = ["qdrant-client>=1.7,<3"]
chroma = ["chromadb>=0.4,<1"]
milvus = ["pymilvus>=2.3,<3"]
weaviate = ["weaviate-client>=3.24,<4"]
postgres = ["psycopg2-binary>=2.9,<3"]
pgvector = ["psycopg2-binary>=2.9,<3"]
dev = [
"pytest>=7.0,<9",
"pytest-cov>=4.0,<7",
"mypy>=1.0,<2",
"black>=23.0,<26",
"ruff>=0.1,<1",
"maturin>=1.7,<2",
]
all = [
"pyvectorhound[qdrant,chroma,milvus,weaviate,postgres,pgvector,dev]",
]
[project.urls]
Homepage = "https://github.com/Mullassery/Pyvectorhound"
Repository = "https://github.com/Mullassery/Pyvectorhound"
Documentation = "https://github.com/Mullassery/Pyvectorhound#readme"
"Bug Tracker" = "https://github.com/Mullassery/Pyvectorhound/issues"
Changelog = "https://github.com/Mullassery/Pyvectorhound/releases"
"Source Code" = "https://github.com/Mullassery/Pyvectorhound/tree/main"
Discussions = "https://github.com/Mullassery/Pyvectorhound/discussions"
[tool.maturin]
module-name = "pyvectorhound._core"
features = ["pyo3/extension-module"]
include = ["LICENSE"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--cov=pyvectorhound --cov-report=term-missing"
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.ruff]
line-length = 100
target-version = "py38"
select = ["E", "F", "W", "I", "N", "RUF"]