From a6a81797d3b9e8f5f4ee535520b749a7da0c97fa Mon Sep 17 00:00:00 2001 From: PIG208 <39874143+PIG208@users.noreply.github.com> Date: Sun, 15 Aug 2021 22:52:44 +0800 Subject: [PATCH] Add `py.typed` to package distribution of django_stubs_ext. (#694) --- django_stubs_ext/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django_stubs_ext/setup.py b/django_stubs_ext/setup.py index ae3d9dd..dfeacc2 100644 --- a/django_stubs_ext/setup.py +++ b/django_stubs_ext/setup.py @@ -25,6 +25,7 @@ setup( python_requires=">=3.6", install_requires=dependencies, packages=["django_stubs_ext", *find_packages(exclude=["scripts"])], + package_data={"django_stubs_ext": ["py.typed"]}, classifiers=[ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",