Upgrade Alias-Agent to 0.2.0 --------- Co-authored-by: ZiTao-Li <zitao.l@alibaba-inc.com> Co-authored-by: xieyxclack <yuexiang.xyx@alibaba-inc.com> Co-authored-by: Zexi Li <tomleeze@qq.com> Co-authored-by: SSSuperDan <dlaura2218@gmail.com> Co-authored-by: lalaliat <78087788+lalaliat@users.noreply.github.com> Co-authored-by: jinli.yl <jinli.yl@alibaba-inc.com> Co-authored-by: Dengjiaji <dengjiaji.djj@alibaba-inc.com> Co-authored-by: 于南 <zengtianjing.ztj@alibaba-inc.com> Co-authored-by: JustinDing <166603159+sleepy-bird-world@users.noreply.github.com> Co-authored-by: y1y5 <269557841@qq.com> Co-authored-by: 柳佚 <yly287738@alibaba-inc.com> Co-authored-by: LiangguiWeng <347185100@qq.com> Co-authored-by: 潜星 <zhijian.mzj@alibaba-inc.com> Co-authored-by: StCarmen <1106135234@qq.com> Co-authored-by: LuYi <yilu_2000@outlook.com> Co-authored-by: 刺葳 <ciwei.cy@alibaba-inc.com>
67 lines
1.4 KiB
TOML
67 lines
1.4 KiB
TOML
[project]
|
|
name = "alias"
|
|
version = "0.2.0"
|
|
description = ""
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"aiohttp>=3.11.16",
|
|
"dashscope>=1.23.1",
|
|
"docker>=7.1.0",
|
|
"fastapi>=0.115.12",
|
|
"gitpython>=3.1.44",
|
|
"ipython>=8.35.0",
|
|
"mcp>=1.6.0",
|
|
"playwright>=1.51.0",
|
|
"steel-sdk>=0.1.0",
|
|
"uvicorn>=0.34.0",
|
|
"redis>=6.0.0b2",
|
|
"celery[redis]>=5.3.1",
|
|
"fastapi-limiter>=0.1.6",
|
|
"pyjwt>=2.10.1",
|
|
"sqlmodel>=0.0.24",
|
|
"pydantic-settings>=2.9.1",
|
|
"pydantic[email]>=2.11.3",
|
|
"user-agents>=2.2.0",
|
|
"passlib>=1.7.4",
|
|
"authlib>=1.5.2",
|
|
"loguru>=0.6.0",
|
|
"pandas>=2.3.3",
|
|
"python-multipart>=0.0.20",
|
|
"elasticsearch>=9.0.0",
|
|
"jinja2>=3.1.6",
|
|
"bcrypt==4.0.1",
|
|
"agentscope[full]==1.0.7",
|
|
"tenacity>=8.5.0",
|
|
"apscheduler>=3.11.0",
|
|
"chardet>=5.2.0",
|
|
"aiofiles>=23.2.1",
|
|
"pygments>=2.19.1",
|
|
"markdown2>=2.5.3",
|
|
"psycopg2-binary>=2.9.10",
|
|
"alembic>=1.16.1",
|
|
"openpyxl>=3.1.5",
|
|
"sentry-sdk[fastapi]===2.30.0",
|
|
"agentscope-runtime==0.2.0",
|
|
"aiosqlite>=0.21.0",
|
|
"asyncpg>=0.30.0",
|
|
"itsdangerous>=2.2.0"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
packages = { find = { where = ["src"] } }
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
]
|
|
|
|
[project.scripts]
|
|
alias_agent = "alias.cli:main" |