forked from marius-team/quake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 791 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 791 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
44
45
46
47
48
49
50
51
52
[project]
name = "quake"
version = "0.0.1"
description = "Dynamic index for vector search"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Jason Mohoney", email = "mohoney2@wisc.edu" }
]
license = { file = "LICENSE" }
dependencies = [
"torch>=2.0",
"numpy",
"pandas",
"faiss-cpu",
"matplotlib"
]
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| src/cpp
)/
'''
[tool.isort]
profile = "black"
skip = ["src/cpp/*", "build/*", "dist/*"]
line_length = 120
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-mermaid",
"graphviz",
"pyyaml"
]
tests = [
"pytest"
]