-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.cfg
More file actions
34 lines (31 loc) · 830 Bytes
/
setup.cfg
File metadata and controls
34 lines (31 loc) · 830 Bytes
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
[bdist_wheel]
universal = 1
[metadata]
name = phone-mcp
version = attr: phone_mcp.__version__
description = A phone control MCP plugin using ADB
description-file = README.md
long_description = file: README.md
long_description_content_type = text/markdown
author = hao
author_email = hao@hao.com
url = https://github.com/yourusername/phone-mcp
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
license = Apache-2.0
keywords = mcp, phone, android, adb
[options]
packages = find:
python_requires = >=3.7
install_requires =
mcp>=1.6.0
aiohttp>=3.8.0
asyncio>=3.4.3
[options.entry_points]
mcp.plugins =
phone = phone_mcp:mcp
console_scripts =
phone-mcp = phone_mcp.__main__:main
phone-cli = phone_mcp.cli:main