-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.15 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.15 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="phone-mcp",
use_scm_version=True,
setup_requires=["setuptools-scm"],
packages=find_packages(),
install_requires=[
"mcp>=1.6.0",
"aiohttp>=3.8.0",
"asyncio>=3.4.3",
"pypinyin>=0.54.0",
],
author="hao",
author_email="hao@hao.com",
description="A phone control plugin for MCP that allows you to control your Android phone through ADB commands to connect any human",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/hao-cyber/phone-mcp",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
entry_points={
"mcp.plugins": ["phone=phone_mcp:mcp"],
"console_scripts": [
"phone-mcp=phone_mcp.__main__:main",
"phone-cli=phone_mcp.cli:main",
],
},
keywords=["mcp", "phone", "android", "adb"],
include_package_data=True,
)