Add py.typed to mark as having typing information

According to PEP 561.
This commit is contained in:
Jochen Sprickerhof 2021-10-14 11:30:46 +02:00 committed by Unrud
parent 35e7ee5a08
commit f72b344981
2 changed files with 1 additions and 1 deletions

0
radicale/py.typed Normal file
View File

View File

@ -74,7 +74,7 @@ setup(
platforms="Any",
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={"radicale": WEB_FILES},
package_data={"radicale": WEB_FILES + ['py.typed']},
entry_points={"console_scripts": ["radicale = radicale.__main__:run"]},
install_requires=["defusedxml", "passlib", "vobject>=0.9.6",
"python-dateutil>=2.7.3", "setuptools"],