-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 958 Bytes
/
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
[tool.poetry]
name = "connect-pro"
version = "0.1.0"
description = ""
authors = ["Ruslan Yermakov <[email protected]>"]
readme = "README.md"
packages = [{include = "connect_pro", from = "src"}]
[tool.poetry.dependencies]
python = "^3.13"
requests = "^2.32.3"
langchain = "^0.3.14"
langchain-openai = "^0.2.14"
langchain-community = "^0.3.14"
langchainhub = "^0.1.21"
tavily-python = "^0.5.0"
fastapi = "^0.115.8"
uvicorn = "^0.34.0"
selenium = "^4.29.0"
webdriver-manager = "^4.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
black = "^24.10.0"
isort = "^5.13.2"
mypy = "^1.14.1"
jupyter = "^1.1.1"
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py313']
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.13"
disallow_untyped_defs = true
check_untyped_defs = true