From d9ea5f1d1f1b4dc69b3685cbcf2376a0f1a5a3e6 Mon Sep 17 00:00:00 2001 From: Farid Zakaria Date: Fri, 20 Oct 2023 17:37:11 +0000 Subject: [PATCH] Add py.typed to elftools (#507) * Add py.typed to elftools fixes #506 * Changed to single quotes --- elftools/py.typed | 0 setup.py | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 elftools/py.typed diff --git a/elftools/py.typed b/elftools/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index ea75680..1b0400c 100644 --- a/setup.py +++ b/setup.py @@ -44,5 +44,6 @@ setup( 'elftools.construct', 'elftools.construct.lib', ], - scripts=['scripts/readelf.py'] + scripts=['scripts/readelf.py'], + package_data={'elftools': ['py.typed']} ) -- 2.30.2