From a7b0e4384d8c4fb8d064677c6e2a56e4e100dae2 Mon Sep 17 00:00:00 2001 From: Kingsley Collie Date: Tue, 4 Feb 2025 10:47:44 +0000 Subject: [PATCH] Tidy MANIFEST.in --- MANIFEST.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 33f21da..43f7f04 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ -include README.md MANIFEST.in setup.py .gitignore -recursive-include idlbridge *.py *.pyx *.pxd *.pxi *.pro VERSION -recursive-include dev * +# include cython files +recursive-include idlbridge *.py *.pyx *.pxd *.pxi +# exclude C files generated by cython, this is now recommended: +# https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html#distributing-cython-modules +recursive-exclude idlbridge *.c