-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.04 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
50
51
52
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.isort]
profile = "black"
length_sort = true
combine_as_imports = true
force_sort_within_sections = true
[tool.poetry]
name = "llm_tools"
version = "0.0.1"
packages = [
{ include = "llm_tools" }
]
description = "This is the base package for llm_tools"
authors = ["collectiveai <[email protected]>"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
more-itertools = "^10.5.0"
openai = "^1.52.2"
rich = "^13.9.3"
tqdm = "^4.66.6"
numpy = "^1.0.0"
weaviate-client = "^4.9.0"
tiktoken = "^0.8.0"
chromadb = "^0.5.16"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
# awscli = "^1.33.0"
python-dotenv = "^1.0.1"
diskcache = "^5.6.3"
radon = "==5.1.0"
black = "^24.8.0"
[tool.pytest.ini_options]
# addopts="-n4"
testpaths = ["test"]
filterwarnings = [
"error",
"ignore::UserWarning",
# note the use of single quote below to denote "raw" strings in TOML
'ignore:.*:DeprecationWarning',
]