From b12a13bc05f2362b1c21b6e1053d945aeebf497d Mon Sep 17 00:00:00 2001 From: Giuseppe Boccia Date: Thu, 4 Dec 2025 18:02:59 +0100 Subject: [PATCH] Include py.typed marker in package distribution --- MANIFEST.in | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index b7b5b6c..64fa090 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include LICENSE include README.md +include frontmatter/py.typed recursive-include tests * diff --git a/setup.py b/setup.py index 11433ba..d4de7e4 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ author_email="eyeseast@gmail.com", url="https://github.com/eyeseast/python-frontmatter", packages=["frontmatter"], + package_data={"frontmatter": ["py.typed"]}, include_package_data=True, install_requires=["PyYAML"], extras_require={