-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.02 KB
/
pyproject.toml
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
[tool.poetry]
name = "qdrant-haystack"
version = "1.0.11"
description = "An integration of Qdrant ANN vector database backend with Haystack"
authors = ["Kacper Łukawski <[email protected]>"]
packages = [
{include = "qdrant_haystack", from = "src"}
]
readme = "README.md"
license = "Apache 2.0"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
qdrant-client = ">=1.1.4"
farm-haystack = "^1.13.0"
tiktoken = ">=0.5.1"
torch = {version = ">=2.0.0, !=2.0.1, !=2.1.0"} # https://github.com/pytorch/pytorch/issues/100974
[tool.poetry.group.dev.dependencies]
pytest = "^7.1"
pre-commit = "^3.1.0"
black = "^23.1.0"
isort = "^5.12.0"
mypy = "^1.0.1"
flake8 = "^6.0.0"
farm-haystack = {extras = ["inference"], version = "^1.18.1"}
[[tool.poetry.source]]
name = "torch-cpu"
url = "https://download.pytorch.org/whl/cpu/"
priority = "explicit"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "7.1"
pythonpath = [
"src/"
]
testpaths = [
"tests/"
]