Add typing to mypy plugin (#804)

This commit is contained in:
Gergely Kalmár
2022-01-05 14:21:14 +01:00
committed by GitHub
parent ed68fbc99f
commit c65e2c48db
2 changed files with 4 additions and 1 deletions

View File

View File

@@ -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",