diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a010a050..bb746f5d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,8 +1,7 @@ default_install_hook_types: - pre-commit - commit-msg -exclude: '^phone_agent/config/apps\.py$' -exclude: '^README_en\.md$' +exclude: '(^phone_agent/config/apps\.py$|^README_en\.md$)' default_stages: - pre-commit # Run locally repos: diff --git a/main.py b/main.py index 8cdc34b2..a190bfa4 100755 --- a/main.py +++ b/main.py @@ -552,7 +552,7 @@ def handle_ios_device_commands(args) -> bool: name_info = device.device_name or "Unnamed" print(f" ✓ {name_info}") - print(f" UUID: {device.device_id}") + print(f" UDID: {device.device_id}") print(f" Model: {model_info}") print(f" OS: {ios_info}") print(f" Connection: {conn_type}") diff --git a/setup.py b/setup.py index b35c2b19..703ce1b3 100644 --- a/setup.py +++ b/setup.py @@ -10,11 +10,11 @@ name="phone-agent", version="0.1.0", author="Zhipu AI", - author_email="", + author_email="zhipu.ai@example.com", description="AI-powered phone automation framework", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/yourusername/phone-agent", + url="https://github.com/zai-org/Open-AutoGLM", packages=find_packages(), classifiers=[ "Development Status :: 3 - Alpha",