From 10038f5d731e85184c0537aa10c7ce3db487be21 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Thu, 12 Oct 2023 12:34:55 +0200 Subject: [PATCH] We need to use a MANIFEST rto insure inclusion of our *.stl and *.xml files --- MANIFEST.in | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a19bc97 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,9 @@ +# Include the README +include README.md + +# Include the license file +include LICENSE + +# Include stl and xml files from the fancy_gym/envs/mujoco directory +recursive-include fancy_gym/envs/mujoco *.stl +recursive-include fancy_gym/envs/mujoco *.xml