From 00c4b6b1e569bfe0ace106364007351e4783a0f5 Mon Sep 17 00:00:00 2001 From: James Sinclair Date: Thu, 29 Jun 2023 22:49:47 +0200 Subject: [PATCH] Really actually fix installing stubs with the package. --- MANIFEST.in | 2 -- setup.py | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index b7f1f50..c5cff31 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,3 @@ -include strenum/*.pyi -include strenum/*.typed include versioneer.py include strenum/_version.py exclude tests/* diff --git a/setup.py b/setup.py index 8042683..2ab514e 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ long_description_content_type="text/markdown", url="https://github.com/irgeek/StrEnum", packages=["strenum"], + package_data={"strenum": ["*.typed", "*.pyi"]}, extras_require={ "test": [ "pytest",