-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 784 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 784 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
[project]
name = "flexvec"
version = "0.3.0"
description = "numpy-backed semantic search for any SQLite database"
license = { text = "MIT" }
authors = [{name = "Damian Delmas", email = "damian@getflex.dev"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["numpy"]
[project.optional-dependencies]
embed = ["onnxruntime", "tokenizers"]
graph = ["networkx"]
[project.urls]
Homepage = "https://github.com/damiandelmas/flexvec"
Paper = "https://arxiv.org/abs/2603.22587"
[tool.setuptools.packages.find]
include = ["flexvec*"]
[tool.setuptools.package-data]
flexvec = ["onnx/*.json", "onnx/vocab.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["unit", "vec_ops"]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"