Changes: 1. browser-cookie3 now in default deps (no separate pip install) 2. install --env=auto now auto-imports cookies on local computers 3. install auto-detects EXA_API_KEY from environment variables 4. install.md cut from 100 lines to 60 lines — two steps not five Before: pip install → agent-eyes install → 'want search?' → 'want cookies?' → configure each After: pip install → agent-eyes install (does everything automatically) → only ask about what's missing Docker clean-room test: all passing, 0 bugs.
55 lines
1.6 KiB
TOML
55 lines
1.6 KiB
TOML
[project]
|
|
name = "agent-eyes"
|
|
version = "1.0.0"
|
|
description = "Give your AI Agent eyes to see the entire internet. Search + Read 10+ platforms."
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.10"
|
|
authors = [{name = "Neo Reid"}]
|
|
keywords = ["ai-agent", "web-reader", "search", "mcp", "agent-infrastructure", "llm-tools"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
]
|
|
|
|
dependencies = [
|
|
"requests>=2.28",
|
|
"feedparser>=6.0",
|
|
"python-dotenv>=1.0",
|
|
"loguru>=0.7",
|
|
"pyyaml>=6.0",
|
|
"rich>=13.0",
|
|
"yt-dlp>=2024.0",
|
|
"browser-cookie3>=0.19",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
browser = ["playwright>=1.40"]
|
|
cookies = ["browser-cookie3>=0.19"]
|
|
mcp = ["mcp[cli]>=1.0"]
|
|
all = ["playwright>=1.40", "mcp[cli]>=1.0", "browser-cookie3>=0.19"]
|
|
|
|
[project.scripts]
|
|
agent-eyes = "agent_eyes.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/Panniantong/agent-eyes"
|
|
Repository = "https://github.com/Panniantong/agent-eyes"
|
|
Issues = "https://github.com/Panniantong/agent-eyes/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["agent_eyes"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"agent_eyes/guides" = "agent_eyes/guides"
|