-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.32 KB
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
[project]
name = "multi-source-rag-platform"
version = "0.5.1"
description = ""
authors = [
{name = "Hagay Bar",email = "hagay.bar@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.11,<3.14"
dependencies = [
"pyyaml (>=6.0.2,<7.0.0)",
"pdfplumber (>=0.11.7,<0.12.0)",
"python-docx (>=1.2.0,<2.0.0)",
"python-pptx (>=1.0.2,<2.0.0)",
"typer (>=0.16.0,<0.17.0)",
"openpyxl (>=3.1.5,<4.0.0)",
"spacy (>=3.8.7,<4.0.0)",
"faiss-cpu (>=1.11.0,<2.0.0)",
"sentence-transformers (>=4.1.0,<5.0.0)",
"litellm[proxy] (>=1.73.0,<2.0.0)",
"pandas (>=2.3.0,<3.0.0)",
"streamlit (>=1.46.1,<2.0.0)",
"werkzeug (>=3.1.3,<4.0.0)",
"pylint (>=3.3.7,<4.0.0)",
"black (>=25.1.0,<26.0.0)",
"colorlog (>=6.9.0,<7.0.0)",
"extract-msg (>=0.54.0,<1.0.0)",
"pywin32 (>=308,<309); sys_platform == 'win32'"
]
[tool.ruff]
line-length = 100 # or lower for more aggressive wrapping
[tool.ruff.format]
docstring-code-format = true
quote-style = "preserve"
[tool.ruff.lint]
select = ["E", "F"]
ignore = []
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pylint = "^3.3.7"
ruff = "^0.12.5"
[tool.poetry.scripts]
litellm = "litellm.__main__:entrypoint"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"