-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.84 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
[project]
name = "uiautomator2-mcp-server"
dynamic = ["version"]
description = "uiautomator2 mcp server"
readme = "README.md"
authors = [{ name = "tanbro", email = "tanbro@163.com" }]
requires-python = ">=3.11"
dependencies = [
"fastmcp>=3.0,<4.0",
"uiautomator2>=3.5,<4.0",
"typing_extensions>=4.12; python_version < '3.12'",
]
license = "Apache-2.0"
keywords = [
"uiautomator2",
"mcp",
"mcp-server",
"fastmcp",
"adb",
"android",
"adbutils",
"automation",
"testing",
"bot",
"ai",
"artificial-intelligence",
"rpa",
"test",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/u2mcp/version.py"
[project.scripts]
uiautomator2-mcp = "u2mcp.__main__:main"
uiautomator2-mcp-server = "u2mcp.__main__:main"
u2mcp = "u2mcp.__main__:main"
[project.urls]
homepage = "https://github.com/tanbro/uiautomator2-mcp-server"
documentation = "https://github.com/tanbro/uiautomator2-mcp-server/blob/main/README.md"
repository = "https://github.com/tanbro/uiautomator2-mcp-server.git"
issues = "https://github.com/tanbro/uiautomator2-mcp-server/issues"
changelog = "https://github.com/tanbro/uiautomator2-mcp-server/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [{ include-group = "type" }, { include-group = "test" }]
type = ["mypy", "types-lxml", "types-retry"]
test = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-mock"]