From d6befc68b91e4f7833ac7cc132d798380a2891bc Mon Sep 17 00:00:00 2001 From: Zhi Huang Date: Mon, 8 Jul 2024 16:44:26 -0400 Subject: [PATCH] Ensure that the MANIFEST.in file includes all necessary folders (#44) * Ensure that the MANIFEST.in file includes all necessary files and folders. In this case, explicitly include the utils/ folder. * change MANIFEST.in to include *.py only --- MANIFEST.in | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2786477 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.md +include requirements.txt +recursive-include textgrad *.py \ No newline at end of file