-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 783 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 783 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
[project]
name = "affine-vectordb"
dynamic = ["version"]
description = "A unified interface for vector databases"
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["typing-extensions", "numpy"]
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["affine"]
[tool.setuptools_scm]
[project.optional-dependencies]
dev = ["setuptools_scm", "pre-commit"]
test = ["pytest", "coverage"]
qdrant = ["qdrant-client"]
weaviate = ["weaviate-client >= 4.0.0"]
pinecone = ["pinecone-client"]
[tool.black]
line-length = 79
[tool.isort]
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true