-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.09 KB
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
[tool.poetry]
name = "reactxen"
version = "0.0.13"
authors = ["James, Nianjun, Dhaval"]
description = "ReAct eXtended"
readme = "README.md"
homepage = "https://github.ibm.com/GenAIApps/ReActXen.git"
repository = "https://github.ibm.com/GenAIApps/ReActXen.git"
packages = [{ include = "reactxen", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
langchain = "^1.1.0"
langchain-core = "*"
langchain-experimental = "*"
langchain-ibm = "*"
# phable = "0.1.18"
diffusers = "0.34.0"
tqdm = "*"
colorama = "0.4.6"
openai = "^1.45.0"
tiktoken = "*"
ibm_watsonx_ai = "^1.3.0"
setuptools = "^80.0.0"
mdextractor = "*"
pendulum = "3.*"
Jinja2 = "*"
langchain-sandbox = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
mypy = "*"
pre-commit = "*"
ruff = "*"
jupyter = "^1.1.1"
[tool.poetry.group.test.dependencies]
coverage = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
tox = "*"
flake8 = "*"
[tool.poetry.extras]
langgraph = ["langgraph"]
[build-system]
# Updated build-backend to poetry-core for editable installs
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"