-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.01 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
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "dharmaQA"
version = "0.1.0"
description = ""
authors = ["gsajko <[email protected]>"]
readme = "README.md"
# packages = [{include = "dharmaQA"}]
[tool.poetry.dependencies]
python = "^3.10"
langchain = "^0.0.352"
lancedb = "^0.4.4"
pandas = "^2.1.4"
sentence-transformers = "^2.2.2"
torch="2.1.2" # for sentence-transformers
# ^^ version fixed to prevent downloading other versions
streamlit = "^1.30.0"
[tool.poetry.group.ingest.dependencies]
unstructured = "^0.11.8"
markdown = "^3.5.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.13"
ipykernel = "^6.28.0"
black = "^23.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| data/fuel_data
)/
)
'''
[tool.ruff]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I"
]