-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 891 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-marketplace"
version = "0.1.0"
description = "Outsource agent tasks to specialized providers — with on-chain escrow on Plasma"
requires-python = ">=3.11"
dependencies = [
"langgraph>=0.2.0",
"langchain-openai>=0.3.0",
"openai>=1.0.0",
"guardrails-ai>=0.5.0",
"web3>=7.0.0",
"eth-account>=0.13.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.27.0",
"browser-use>=0.11.0",
"mcp>=1.2.0",
"langchain-mcp-adapters>=0.1.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
]
[project.scripts]
agent-marketplace = "agent_marketplace.cli:main"
marketplace-api = "agent_marketplace.api:main"
mcp-browser-agent = "agent_marketplace.mcp.server:main"
[tool.setuptools.packages.find]
include = ["agent_marketplace*"]