From 5ced745e70214a5c10c32f5d8b26b037d3bc682b Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 27 Aug 2021 22:59:22 -0700 Subject: [PATCH] Explicitly add py.typed to package_data --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 605392c..8753513 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ def get_version(): python_requires=">=3.7", install_requires=_get_requirements("REQUIREMENTS.txt"), packages=['pydantic_cli', 'pydantic_cli.examples'], + package_data={"pydantic_cli": ["py.typed"]}, tests_require=_get_requirements("REQUIREMENTS-TEST.txt"), extras_require={"shtab": "shtab>=1.3.1"}, zip_safe=False,