diff --git a/CHANGELOG.md b/CHANGELOG.md index 67edb749..6bdbde86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [Unreleased] + +## Fixed + +- `py.typed` file not included in Pypi distribution. Fixed with adding mypy compatibility. + ## [0.7.4] - 2022-07-19 ### Added diff --git a/setup.py b/setup.py index 0fc9c926..6edfcb81 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,9 @@ def _open(subpath): "test", ] ), + include_package_data=True, + package_data={"pdfplumber": ["py.typed"]}, + zip_safe=False, tests_require=base_reqs + dev_reqs, python_requires=">=3.7", install_requires=base_reqs,