Files
coze-studio/py_package/pyproject.toml
liuyunchao.0510 d92dacffb5 cancel
2025-10-16 21:38:39 +08:00

29 lines
847 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-dir = {"browser_agent" = "browser_agent","stream_helper" = "stream_helper"}
[tool.setuptools.package-data]
"browser_agent" = ["**/*.mo", "**/*.po"]
[project]
name = "coze-studio-py-package" # 包名在PyPI上唯一。通常用中划线
version = "0.1.0"
description = "browser agent"
# 如果你的包有依赖,在这里声明
dependencies = [
"fastapi==0.109.2",
"uvicorn==0.27.0.post1",
"python-multipart==0.0.9",
"MainContentExtractor==0.0.4",
"aiohttp==3.11.16",
"websockets==15.0.1",
"faiss-cpu==1.10.0",
"browser_use @ git+https://github.com/liuyunchao-1998/browser-use-copy.git@i18n_system_prompt",
"playwright==1.52.0",
"pillow==11.3.0"
]