| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [project]
- name = "cyber-agent"
- version = "0.4.0"
- description = "模块化、可扩展的 Agent 框架"
- readme = "README.md"
- requires-python = ">=3.11"
- dependencies = [
- "httpx[socks]>=0.28.0",
- "python-dotenv>=1.0.0",
- "pydantic",
- "pillow>=10.0.0",
- "python-dateutil>=2.9.0",
- "filelock>=3.15.0",
- ]
- [project.optional-dependencies]
- dev = [
- "pytest>=8.0",
- "pytest-asyncio>=0.23",
- "pytest-cov>=5.0",
- ]
- browser = [
- "browser-use>=0.11.0",
- "langchain_core>=0.3.0",
- ]
- server = [
- "fastapi>=0.115.0",
- "uvicorn[standard]>=0.32.0",
- "websockets>=13.0",
- ]
- feishu = [
- "lark-oapi==1.5.3",
- ]
- all = [
- "browser-use>=0.11.0",
- "langchain_core>=0.3.0",
- "fastapi>=0.115.0",
- "uvicorn[standard]>=0.32.0",
- "websockets>=13.0",
- "lark-oapi==1.5.3",
- ]
- [build-system]
- requires = ["setuptools>=68.0"]
- build-backend = "setuptools.build_meta"
- [tool.setuptools.packages.find]
- include = ["agent*"]
- [tool.pytest.ini_options]
- asyncio_mode = "auto"
- testpaths = ["tests"]
- pythonpath = ["."]
|