From 0b7cdf733ca2b5b6d9131ab1601a37e404c12f55 Mon Sep 17 00:00:00 2001 From: Dima Gerasimov Date: Sat, 10 Aug 2024 20:10:39 +0300 Subject: [PATCH] include py.typed file to make typing annotations available for library users --- mistletoe/py.typed | 0 setup.py | 1 + 2 files changed, 1 insertion(+) create mode 100644 mistletoe/py.typed diff --git a/mistletoe/py.typed b/mistletoe/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/setup.py b/setup.py index fbd8d668..098e8d5e 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,7 @@ author_email='hello@afteryu.me', license='MIT', packages=['mistletoe', 'mistletoe.contrib'], + package_data={'mistletoe': ['py.typed']}, entry_points={'console_scripts': ['mistletoe = mistletoe.__main__:main']}, classifiers=[ 'Development Status :: 5 - Production/Stable',