forked from suyiiyii/AutoGLM-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.99 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
69
70
[project]
name = "autoglm-gui"
version = "1.4.1"
description = "Web GUI for AutoGLM Phone Agent - AI-powered Android automation"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "suyiiyii" }]
keywords = ["autoglm", "phone-agent", "android", "automation", "ai", "gui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT 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",
]
dependencies = [
"fastapi>=0.124.0",
"fastmcp>=2.0.0",
"httpx[socks]>=0.28.1",
"jinja2>=3.1.0", # Required by MAI agent for prompt templating
"loguru>=0.7.3",
"numpy>=1.24.0", # Required by MAI agent
"openai>=2.9.0",
"openai-agents>=0.6.4",
"pillow>=11.3.0",
"prometheus-client>=0.21.0",
"python-socketio>=5.11.0",
"pyyaml>=6.0.3",
"uvicorn[standard]>=0.38.0",
"zeroconf>=0.148.0",
]
[project.urls]
Homepage = "https://github.com/suyiiyii/AutoGLM-GUI"
Repository = "https://github.com/suyiiyii/AutoGLM-GUI"
[project.scripts]
autoglm-gui = "AutoGLM_GUI.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["AutoGLM_GUI", "phone_agent"]
force-include = {"scrcpy-server-v3.3.3" = "scrcpy-server-v3.3.3", "mai_agent" = "mai_agent"}
[tool.hatch.build.targets.sdist]
include = ["AutoGLM_GUI/**/*", "phone_agent/**/*", "mai_agent/**/*", "scrcpy-server-v3.3.3"]
[tool.hatch.build]
artifacts = ["AutoGLM_GUI/static/**/*"]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"pyinstaller>=6.17.0",
"pyright>=1.1.407",
"pytest>=9.0.2",
"ruff>=0.14.9",
]