From ebbb9dc176f58cc9ac5e8efe889d471b2376143c Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Sun, 17 Nov 2024 00:53:33 +0000 Subject: [PATCH] add files in MANIFEST rather than setup --- MANIFEST.in | 2 ++ setup.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 28f50d2..21b8d5f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,4 +7,6 @@ include raylib/*.h exclude raylib/*.c exclude raylib/*.o include version.py +include raylib/py.typed +include pyray/py.typed diff --git a/setup.py b/setup.py index 7ced069..db835ae 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,6 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.7", ], - package_data={"raylib": ["py.typed"], "pyray": ["py.typed"]}, packages=["raylib", "pyray"], include_package_data=True, install_requires=["cffi>=1.17.0rc1"],