From 836b729a2030e87232475f778b8e114015a780fd Mon Sep 17 00:00:00 2001 From: Ryan Young Date: Sun, 15 Aug 2021 08:48:28 -0700 Subject: [PATCH] Include type stubs in package data (#424) --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 0f8e3d2f..42a21670 100755 --- a/setup.py +++ b/setup.py @@ -89,6 +89,9 @@ setup( 'assets/themes/default/*.ico', 'i18n/*.py', 'i18n/*/LC_MESSAGES/*.mo', + 'py.typed', + '*.pyi', + '*/*.pyi' ], }, install_requires=install_requires,