From 668e3b65a625497c1a55db15fb6496dd7d817df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=82=85=E7=AB=8B=E4=B8=9A=EF=BC=88Chris=20Fu=EF=BC=89?= <17433201@qq.com> Date: Sat, 11 May 2024 13:53:22 +0800 Subject: [PATCH] Add a "py.typed" file --- runtime_keypath/py.typed | 0 setup.py | 9 ++++++++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 runtime_keypath/py.typed diff --git a/runtime_keypath/py.typed b/runtime_keypath/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 2702da5..3f79d4a 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,10 @@ +# pyright: basic + import setuptools -setuptools.setup(packages=["runtime_keypath"]) +setuptools.setup( + packages=["runtime_keypath"], + package_data={ + "runtime_keypath": ["py.typed"], + }, +)