-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 781 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 781 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "arke"
version = "2.0.0"
description = "Arke — autonomous prediction-market intelligence agent (MCP server + x402/Circle Nanopayments feed)"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.8",
"httpx>=0.27",
"groq>=0.9",
"python-dotenv>=1.0",
"schedule>=1.2",
"web3>=6.20",
"tweepy>=4.14",
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
]
# `arke-mcp` launches the stdio MCP server after `pip install -e .`
# (also runnable as `python -m agent.mcp_server`).
[project.scripts]
arke-mcp = "agent.mcp_server:main"
[tool.setuptools]
py-modules = ["prove_the_loop"]
[tool.setuptools.packages.find]
include = ["agent*"]