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 diff --git a/pyproject.toml b/pyproject.toml index d83531e..da613cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,23 @@ 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.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"