-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.15 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
[tool.poetry]
name = "parsee-core"
version = "0.1.7.1"
description = ""
authors = ["Parsee.ai <info@parsee.ai>"]
homepage = "https://parsee.ai"
packages = [{include = "parsee"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
requests = "^2.28.1"
pandas = "^1.4.3"
numpy = "^1.23.1"
tiktoken = "^0.4.0"
pydantic = "^2.7.0"
beautifulsoup4 = "^4.11.1"
parsee-pdf-reader = "^0.1.6.0"
lxml = "^4.9.1"
opencv-python = "^4.9.0.80"
torch = "<2.3"
urllib3 = "<2"
sentence-transformers = "^2.2.2"
scikit-learn = "^1.5.2"
anthropic = "^0.20.0"
ollama = "^0.1.7"
together = "^1.1.1"
openai = "^1.59.9"
cohere = "^5.3.3"
mistralai ="^1.1.0"
replicate ="^0.23.1"
tenacity = "^8.1.0"
pydantic-settings = "^2.6.1"
[tool.poetry.group.extras.dependencies]
langchain = "^0.1.11"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-env = "^1.1.5"
pytest-dotenv = "^0.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = "True"
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
env_files = [".env"]
env = [
"max_cache_size=1",
"retry_attempts=2",
]