Release UI Automator 0.0.0 PiperOrigin-RevId: 570572770
diff --git a/README.md b/README.md index 894e9eb..3b29dc7 100644 --- a/README.md +++ b/README.md
@@ -9,6 +9,7 @@ #### Python 3 You need a python 3 environment to run the script. +Google Home UI Automator requires python 3.9 or newer. #### Android phone
diff --git a/setup.py b/setup.py index 979eaa0..9289c66 100644 --- a/setup.py +++ b/setup.py
@@ -41,17 +41,18 @@ description='Google Home UI Automator', long_description=_get_readme(), long_description_content_type='text/markdown', - python_requires='>=3.7', + python_requires='>=3.9', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: MacOS', 'Operating System :: POSIX :: Linux', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Testing', ], @@ -65,7 +66,7 @@ packages=setuptools.find_packages(exclude=['ui_automator.tests*']), package_dir={'ui_automator': _SOURCE_CODE_DIR_NAME}, package_data={ - 'ui_automator': [], + 'ui_automator': ['android/**'], }, # runtime dependencies that are installed by pip during install install_requires=_get_requirements(),