From df2cfcb6d0e3d39caf564a54d6f8ee6824cfe981 Mon Sep 17 00:00:00 2001 From: Brendan Abolivier <7-babolivier@users.noreply.gitlab.example.com> Date: Thu, 6 Oct 2022 17:59:11 +0000 Subject: [PATCH] Python bindings: add `py.typed` to wheels --- python/setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 5742fd9..6b143d3 100644 --- a/python/setup.py +++ b/python/setup.py @@ -27,5 +27,8 @@ setup( "future", "typing;python_version<'3.5'" ], - zip_safe=False + zip_safe=False, + package_data={ + "olm": ["py.typed"] + } )