From e7e4d2f80f9f7d8bd606928d1a093121b992d62c Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 16 May 2023 16:09:37 -0700 Subject: [PATCH] Export type info. Though there are no type hints here, exporting this file will at least suppress errors from importers and will allow mypy to infer the things it can. Bug: None Test: mypy gdbrunner Test: mypy ndkgdb.py # in the NDK Change-Id: Idf4b7fc646b53e10f36900d09ea98feaa64fd794 --- python-packages/gdbrunner/gdbrunner/py.typed | 0 python-packages/gdbrunner/setup.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 python-packages/gdbrunner/gdbrunner/py.typed diff --git a/python-packages/gdbrunner/gdbrunner/py.typed b/python-packages/gdbrunner/gdbrunner/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/python-packages/gdbrunner/setup.py b/python-packages/gdbrunner/setup.py index 6521cc5c9..5f282914c 100644 --- a/python-packages/gdbrunner/setup.py +++ b/python-packages/gdbrunner/setup.py @@ -17,11 +17,11 @@ from setuptools import setup setup( - name='gdbrunner', version='0.0.1', description='Common helpers of ndk-gdb and gdbclient.', license='Apache 2.0', packages=['gdbrunner'], + package_data={'gdbrunner': ['py.typed']}, classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers',