From c65e2c48dbc2c8c01f35197162a7eb2121bd7b50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gergely=20Kalm=C3=A1r?= Date: Wed, 5 Jan 2022 14:21:14 +0100 Subject: [PATCH] Add typing to mypy plugin (#804) --- mypy_django_plugin/py.typed | 0 setup.py | 5 ++++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 mypy_django_plugin/py.typed diff --git a/mypy_django_plugin/py.typed b/mypy_django_plugin/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index a54f714..549e476 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,10 @@ setup( python_requires=">=3.6", install_requires=dependencies, packages=["django-stubs", *find_packages(exclude=["scripts"])], - package_data={"django-stubs": find_stub_files("django-stubs")}, + package_data={ + "django-stubs": find_stub_files("django-stubs"), + "mypy_django_plugin": ["py.typed"], + }, classifiers=[ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",