-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 936 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
41
42
43
[tool.poetry]
name = "integration-agent"
version = "0.1.2"
description = "An AI agent for automatically creating service integrations"
authors = [
"Oseh Mathias <o@matmail.me>",
]
license = "MIT"
readme = "README.md"
packages = [{include = "agent"}]
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
langchain = "^0.3.18"
langchain-community = "^0.3.17"
langchain-anthropic = "^0.3.7"
tavily-python = "^0.5.1"
beautifulsoup4 = "^4.13.3"
requests = "^2.32.3"
aiohttp = "^3.11.12"
python-dotenv = "^1.0.1"
tomli = "^2.2.1"
tomli-w = "^1.2.0"
google-auth-oauthlib = "^1.2.1"
google-api-python-client = "^2.161.0"
langchain-core = "^0.3.35"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
black = "^25.1.0"
isort = "^6.0.0"
mypy = "^1.15.0"
ruff = "^0.9.6"
pytest-asyncio = "^0.25.3"
pytest-mock = "^3.14.0"
requests-mock = "^1.12.1"
[build-system]
requires = [
"poetry-core",
]
build-backend = "poetry.core.masonry.api"