-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (59 loc) · 1.87 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "orderwise-agent"
version = "1.0.2"
description = "基于 AutoGLM 的智能外卖比价 Agent"
readme = "README_PYPI.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "UCloud", email = "orderwise.agent@gmail.com"}]
keywords = ["ai", "agent", "mobile", "automation", "price-comparison"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"PyYAML>=6.0",
"Pillow>=12.0.0",
"pydantic>=2.12.5",
"openai>=2.9.0",
"pymongo>=4.15.5",
"starlette>=0.50.0",
"mcp>=1.0.0",
"fastmcp>=0.1.0",
"uvicorn>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/ucloud/orderwise-agent"
Repository = "https://github.com/ucloud/orderwise-agent"
[project.scripts]
orderwise-agent = "orderwise_agent.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["orderwise_agent*", "phone_agent*", "mcp_mode*"]
[tool.setuptools.package-data]
"*" = ["*.json", "*.yaml", "*.yml", "*.md"]
"mcp_mode.mcp_server" = ["*.yaml", "*.json"]
"orderwise_agent" = ["*.json"]
[tool.setuptools]
include-package-data = true
license-files = []
[tool.setuptools.data-files]
"" = ["README.md", "NOTICE", "requirements.txt"]
"examples" = ["examples/*.json", "examples/*.py"]