From e1ac398c123256c3b06897fbd334945a941bbb6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Woirhaye?= Date: Mon, 25 Aug 2025 20:38:56 +0200 Subject: [PATCH 1/3] docs: Fix pip install name and example usage --- README.md | 2 +- docs/examples/apk-management.md | 2 +- docs/getting-started/installation.md | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d09392a..a788f57 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Android Device Manager is a Python library for creating, launching, and managing ### 📦 From PyPI (Recommended) ```bash -pip install python-android-avd-manager +pip install android-device-manager ``` ### 🚧 From Source diff --git a/docs/examples/apk-management.md b/docs/examples/apk-management.md index d84ea0d..607784a 100644 --- a/docs/examples/apk-management.md +++ b/docs/examples/apk-management.md @@ -18,7 +18,7 @@ emulator_config = EmulatorConfiguration( no_window=True ) -with AndroidDevice(avd_config) as device: +with AndroidDevice(avd_config,emulator_config) as device: # Install APK device.install_apk("/path/to/app.apk") diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index e94d1c9..8080473 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -72,16 +72,16 @@ emulator -version sdkmanager --list_installed ``` -## Install python-android-avd-manager +## Install android-device-manager ### 📦 From PyPI (Recommended) ```bash -pip install python-android-avd-manager +pip install android-device-manager ``` ### 🚧 From Source ```bash -git clone https://github.com/jwoirhaye/python-android-avd-manager-python.git -cd python-android-avd-manager +git clone https://github.com/jwoirhaye/android-device-manager-python.git +cd android-device-manager-python pip install -e . ``` \ No newline at end of file From 7b6b641ce027614a88afcab1da106bbb9abf8833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Woirhaye?= Date: Mon, 25 Aug 2025 20:43:50 +0200 Subject: [PATCH 2/3] chore: update pyproject.toml --- pyproject.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d83531e..79e4783 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,24 @@ maintainers = [ requires-python = ">=3.10" dependencies = [] +readme = { file = "README.md", content-type = "text/markdown" } +license = { file = "LICENSE" } +keywords = [ + "android", "adb", "emulator", "android emulator", "device manager", + "automation", "testing", "devtools", "python" +] +classifiers = [ + "Intended Audience :: Developers", + "Topic :: Software Development", + "Topic :: Utilities", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Typing :: Typed" +] + [project.urls] Homepage = "https://github.com/jwoirhaye/android-device-manager-python" Source = "https://github.com/jwoirhaye/android-device-manager-python" From 2dc20d782ff607831d47685f876e9da8e11303f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Woirhaye?= Date: Mon, 25 Aug 2025 20:45:01 +0200 Subject: [PATCH 3/3] chore: update pyproject.toml --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 79e4783..da613cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,6 @@ classifiers = [ "Topic :: Software Development", "Topic :: Utilities", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",