-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 938 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 938 Bytes
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
[project]
name = "linkedin-article-generator"
version = "0.1.0"
description = "Multi-Agents system that read scientific article and write a linkedin post"
authors = [
{name = "elie eldebs",email = "elie.eldebs@outlook.fr"}
]
requires-python = ">=3.12,<4.0.0"
dependencies = [
"langchain (>=1.2.10,<2.0.0)",
"langgraph (>=1.0.9,<2.0.0)",
"langsmith (>=0.7.7,<0.8.0)",
"langchain-openai (>=1.1.10,<2.0.0)",
"langchain-classic (>=1.0.1,<2.0.0)",
"langchain-community (>=0.4.1,<0.5.0)",
"pypdf (>=6.7.4,<7.0.0)",
"dotenv (>=0.9.9,<0.10.0)",
"black (>=26.1.0,<27.0.0)",
"isort (>=8.0.1,<9.0.0)",
"pymupdf (>=1.27.1,<2.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"ipykernel (>=7.2.0,<8.0.0)",
"pytest (>=9.0.2,<10.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)",
"pytest-mock (>=3.15.1,<4.0.0)"
]