Skip to content

Commit

Permalink
fix(dist): add py.typed to package_data (#90)
Browse files Browse the repository at this point in the history
Fixes #89, by adding `py.typed` to `package_data`, this was validated by running locally the following commands:
  • Loading branch information
sk- authored Jul 11, 2024
1 parent 096bc33 commit 1a12a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author_email="[email protected]",
description="Pure python implementation of magic file detection",
long_description=long_description,
package_data={"puremagic": ["*.json"]},
package_data={"puremagic": ["*.json", "py.typed"]},
packages=["puremagic"],
include_package_data=True,
platforms="any",
Expand Down

0 comments on commit 1a12a25

Please sign in to comment.