zulip_bots, zulip_botserver: Add PEP 561 type annotation markers.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2019-08-07 17:18:25 -07:00 committed by Tim Abbott
parent 567d6ebc25
commit c6a52d798e
4 changed files with 3 additions and 1 deletions

View file

@ -15,7 +15,8 @@ IS_PYPA_PACKAGE = False
package_data = {
'': ['doc.md', '*.conf', 'assets/*']
'': ['doc.md', '*.conf', 'assets/*'],
'zulip_bots': ['py.typed'],
}
# IS_PYPA_PACKAGE is set to True by tools/release-packages

View file

View file

@ -30,6 +30,7 @@ package_info = dict(
],
},
test_suite='tests',
package_data={'zulip_botserver': ['py.typed']},
) # type: Dict[str, Any]
setuptools_info = dict(

View file