-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (96 loc) · 2.63 KB
/
pyproject.toml
File metadata and controls
109 lines (96 loc) · 2.63 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vectorpin"
version = "0.1.1"
description = "Verifiable integrity for AI embedding stores."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
authors = [
{ name = "Jascha Wanger / ThirdKey.ai" },
]
keywords = ["security", "vector-database", "embeddings", "rag", "integrity", "provenance"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"cryptography>=42.0",
"numpy>=1.26",
]
[project.optional-dependencies]
# Default backend for "I want pinning without standing up a server".
# Matches the Symbiont runtime's default vector backend.
default = ["lancedb>=0.6"]
lancedb = ["lancedb>=0.6"]
chroma = ["chromadb>=0.5"]
pinecone = ["pinecone>=5.0"]
# Note: package was renamed from `pinecone-client` to `pinecone` in 2024.
qdrant = ["qdrant-client>=1.7"]
faiss = ["faiss-cpu>=1.8"]
detectors = ["scikit-learn>=1.3"]
all = [
"lancedb>=0.6",
"chromadb>=0.5",
"pinecone>=5.0",
"qdrant-client>=1.7",
"faiss-cpu>=1.8",
"scikit-learn>=1.3",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.0",
"ruff>=0.15",
"mypy>=1.5",
]
[project.urls]
Homepage = "https://vectorpin.org"
Repository = "https://github.com/ThirdKeyAI/VectorPin"
Issues = "https://github.com/ThirdKeyAI/VectorPin/issues"
Documentation = "https://vectorpin.org/docs"
[project.scripts]
vectorpin = "vectorpin.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["vectorpin*"]
[tool.setuptools.package-data]
vectorpin = ["py.typed"]
# ---- Tooling ----
[tool.ruff]
line-length = 100
required-version = ">=0.15.0"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "C4", "RUF"]
ignore = ["E402", "A003"]
[tool.ruff.lint.isort]
known-first-party = ["vectorpin"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
markers = [
"integration: tests that require an external service",
"slow: long-running tests",
]
[tool.coverage.run]
source = ["src/vectorpin"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unreachable = true
ignore_missing_imports = true