diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 16:24:33 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 16:24:33 -0700 |
commit | 4d19937ddb69cc26bb8a1e997abf21c0f910130d (patch) | |
tree | 54f17bfa11b38c3a813337c7bf0418f713f65057 | |
parent | f702293e0dd43a5800e45387a4719e33100c2423 (diff) | |
download | fuzzycat-4d19937ddb69cc26bb8a1e997abf21c0f910130d.tar.gz fuzzycat-4d19937ddb69cc26bb8a1e997abf21c0f910130d.zip |
packaging: include py.typed for mypy to detect
-rw-r--r-- | fuzzycat/py.typed | 0 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/fuzzycat/py.typed b/fuzzycat/py.typed new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/fuzzycat/py.typed @@ -15,6 +15,7 @@ with open("README.md", "r") as fh: long_description_content_type="text/markdown", url="https://github.com/miku/fuzzycat", packages=setuptools.find_packages(), + package_data={"fuzzycat": ["py.typed"]}, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", |