From 905e402d13563b7ef02ff64c9da7a145936e7fed Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 23 Apr 2021 14:51:04 +0200 Subject: [PATCH] Add PEP-561 py.typed file This commit adds a py.typed file, which marks the package as having type information available. For more information, see https://mypy.readthedocs.io/en/stable/installed_packages.html#making-pep-561-compatible-packages --- py.typed | 0 setup.py | 1 + 2 files changed, 1 insertion(+) create mode 100644 py.typed diff --git a/py.typed b/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/setup.py b/setup.py index 69429901f..95587c145 100644 --- a/setup.py +++ b/setup.py @@ -192,6 +192,7 @@ def run_tests(self): packages=find_packages(), package_data={ 'openhtf': [ + 'py.typed', 'output/proto/*.proto', 'output/web_gui/dist/*.*', 'output/web_gui/dist/css/*', 'output/web_gui/dist/js/*', 'output/web_gui/dist/img/*', 'output/web_gui/*.*'