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
This commit is contained in:
Dan Albert
2023-05-16 16:09:37 -07:00
parent 754c05b8fb
commit e7e4d2f80f
2 changed files with 1 additions and 1 deletions

View File

@@ -17,11 +17,11 @@ from setuptools import setup
setup( setup(
name='gdbrunner',
version='0.0.1', version='0.0.1',
description='Common helpers of ndk-gdb and gdbclient.', description='Common helpers of ndk-gdb and gdbclient.',
license='Apache 2.0', license='Apache 2.0',
packages=['gdbrunner'], packages=['gdbrunner'],
package_data={'gdbrunner': ['py.typed']},
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers', 'Intended Audience :: Developers',