-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 986 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 986 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
35
36
37
38
39
40
[project]
authors = [
{name = "Cleverson Sacramento", email = "cleverson.sacramento@gmail.com"},
]
dependencies = [
"langgraph (>=0.6.8,<0.7.0)",
"langgraph-prebuilt (>=0.6.4,<0.7.0)",
"langchain-openai (>=0.3.33,<0.4.0)",
"langchain-core (>=0.3.76,<0.4.0)",
"prettyprinter (>=0.18.0,<0.19.0)",
"authlib (>=1.6.4,<2.0.0)",
"python-dotenv (>=1.0.1,<2.0.0)",
"grandalf (>=0.8,<0.10)",
"aiosqlite (>=0.21.0,<0.22.0)",
"langgraph-checkpoint-sqlite (>=2.0.11,<3.0.0)",
"ipython (>=9.6.0,<10.0.0)",
"langchain (>=0.3.27,<0.4.0)",
]
description = ""
name = "langgraph-experiments"
package-mode = true
readme = "README.md"
requires-python = ">=3.13,<4.0"
version = "0.1.0"
[tool.poetry]
packages = [
{include = "src", from = "."},
]
[project.scripts]
langgraph-experiments = "src.main:main"
[tool.poetry.group.dev.dependencies]
black = "^25.9.0"
pylint = "^3.3.8"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0.0,<3.0.0"]