From 4ac48d017ffe0011cb7e2f40dd21587b77c8ffa7 Mon Sep 17 00:00:00 2001
From: Christophe Guillon <christophe.guillon@inria.fr>
Date: Thu, 4 Jul 2024 09:35:46 +0200
Subject: [PATCH] [Setup] Remove cache files from package

Remove pycache files and generated egg-info from
sources list in MANIFEST.in.
Note that it would be better to explicitly include only
the required files instead of recursively including all
and then excluding cache files.
---
 MANIFEST.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index 7a01a2d6c..089b766ef 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,6 +1,8 @@
 include MANIFEST.in
 include LICENSE
 include README.md
-recursive-include aidge_core *
 include setup.py
 include version.txt
+recursive-include aidge_core *
+global-exclude __pycache__/*
+global-exclude *.egg-info/*
-- 
GitLab