-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (37 loc) · 953 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
[tool.poetry]
name = "ice-breaker"
version = "0.1.0"
description = ""
authors = ["Seyed Morteza Hosseini <seyedmortezahosseini@Seyeds-MacBook-Pro.local>"]
readme = "README.md"
packages = [{include = "ice_breaker"}]
[tool.poetry.dependencies]
python = "^3.11"
langchain = "^0.0.352"
openai = "^1.6.1"
googlesearch-python = "^1.2.3"
linkedin-api = {git = "https://github.com/tomquirk/linkedin-api.git"}
lxml = "^5.0.0"
pydantic = "^2.5.3"
flask = "^3.0.0"
jinja-partials = "^0.1.1"
[tool.poetry.group.test.dependencies]
black = "^23.12.1"
isort = "^5.13.2"
flake8 = "^6.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 79
[[tool.mypy.overrides]]
module = "langchain.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "flask.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pydantic.*"
ignore_missing_imports = true