-
Notifications
You must be signed in to change notification settings - Fork 506
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (92 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
97 lines (92 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "ii-agent"
version = "0.1.0"
description = "Intelligent Agent platform with tools and MCP support"
readme = "README.md"
authors = [{ name = "Intelligent Internet", email = "info@ii.inc" }]
requires-python = ">=3.10"
dependencies = [
"dataclasses-json>=0.6.7",
"duckduckgo-search>=8.0.1",
"fastapi>=0.115.12",
"google-cloud-aiplatform>=1.90.0",
"google-genai>=1.14.0",
"ii-researcher>=0.1.5",
"jsonschema>=4.23.0",
"mammoth>=1.9.0",
"markdownify>=1.1.0",
"pandas>=2.2.3",
"pathvalidate>=3.2.3",
"pdfminer-six>=20250506",
"openai>=1.68.2",
"pexpect>=4.9.0",
"pillow>=11.2.1",
"pip>=25.1.1",
"playwright==1.55.0",
"prompt-toolkit>=3.0.51",
"puremagic>=1.29",
"pydub>=0.25.1",
"pymupdf>=1.25.5",
"pytest>=8.3.5",
"python-dotenv>=1.1.0",
"python-pptx>=1.0.2",
"rich==14.1.0",
"speechrecognition>=3.14.2",
"tavily-python>=0.7.2",
"tenacity>=9.1.2",
"termcolor>=3.0.1",
"uvicorn[standard]>=0.29.0,<0.30.0",
"youtube-transcript-api>=1.0.3",
"alembic>=1.16.1",
"fastmcp==2.10.6",
"libtmux==0.46.2",
"bcrypt>=4.0.0",
"PyJWT>=2.8.0",
"email-validator>=2.0.0",
"cryptography>=42.0.0",
"fastapi-sso>=0.16.0",
"aiosqlite>=0.21.0",
"pydantic==2.11.7",
"e2b-code-interpreter==1.2.0b5",
"python-socketio>=5.13.0",
"gcloud-aio-storage==9.5.0",
"transformers>=4.44.0",
"weasyprint>=66.0",
"python-magic>=0.4.27",
"asyncpg>=0.30.0",
"stripe>=11.1.0",
"python-crontab>=2.7.1",
"psycopg2-binary>=2.9.10",
"ast-grep-cli>=0.39.5",
"starlette[full]>=0.46.2",
"redis>=5.0.0",
"pypdf>=6.1.1",
"apscheduler>=3.11.0",
"litellm>=1.63.14",
"anthropic[vertex]>=0.72.0",
"langchain-text-splitters>=1.0.0",
"google-auth-oauthlib>=1.2.3",
"google-api-python-client>=2.150.0",
"ddgs>=9.9.1",
]
[project.optional-dependencies]
gaia = [
"datasets>=3.6.0",
"huggingface-hub>=0.31.1",
"sqlalchemy>=2.0.0",
"tavily-python>=0.7.2",
"tenacity>=9.1.2",
"termcolor>=3.0.1",
"uvicorn[standard]>=0.29.0",
]
[project.scripts]
ii-agent = "ii_agent.cli.main:main"
ii-tool = "ii_tool.mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools.packages.find]
where = ["src"]
include = ["ii_agent*", "ii_tool*"]
[dependency-groups]
dev = ["pytest-asyncio>=1.0.0"]