-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
49 lines (41 loc) · 1.06 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
45
46
47
48
49
[build-system]
requires = ["poetry-core", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "agent_search"
version = "0.1.0"
description = "AgentSearch: An open source framework and dataset for webscale local search."
authors = ["Owen Colegrove <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
# python version
python = ">=3.9,<3.12"
# package dependencies
configparser = "^5.0.0"
fire = "^0.5.0"
numpy = "^1.25.2"
pydantic = "^1.10.13"
qdrant_client = "^1.7.0"
requests = "^2.31.0"
sciphi_synthesizer="1.0.5"
transformers = "^4.33.1"
openai = "0.27.8"
# Additional Requirements
# torch, fastapi, uvicorn, psycogp2
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "6.1.0"
isort = "5.12.0"
pre-commit = "^3.3.3"
mypy = "^1.5.1"
types-requests = "^2.31.0.2"
types-attrs = "^19.1.0"
[tool.black]
line-length = 79
[tool.mypy]
ignore_missing_imports = true
exclude = 'playground/.*|deprecated/.*|dump/.*|docs/source'
[[tool.mypy.overrides]]
module = "yaml"
ignore_missing_imports = true