From d5e7746557c6bd4db9e9a9dac06dfef94633e0cb Mon Sep 17 00:00:00 2001 From: Ilan Schnell Date: Wed, 9 Jun 2021 19:09:28 -0500 Subject: [PATCH] add marker file, see PEP 561 --- bitarray/py.typed | 0 setup.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 bitarray/py.typed diff --git a/bitarray/py.typed b/bitarray/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/setup.py b/setup.py index b4e77c90..a26d9c37 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ ], description = "efficient arrays of booleans -- C extension", packages = ["bitarray"], - package_data = {"bitarray": ["*.h", "*.pickle"]}, + package_data = {"bitarray": ["*.h", "*.pickle", "py.typed", "*.pyi"]}, ext_modules = [Extension(name = "bitarray._bitarray", sources = ["bitarray/_bitarray.c"]), Extension(name = "bitarray._util",