diff --git a/conanfile.py b/conanfile.py
index 04d2b1f527b0c5936c0c9a5c7d6d20a98446f1bb..8b2b95622ad396522c45d48e4886cd353b7a4b73 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -18,7 +18,10 @@ class CaosdbConan(ConanFile):
         ("gtest/1.11.0"),
         ("grpc/1.38.0"),
     ]
-    exports = "*.cpp", "*.h", "*.cmake", "*CMakeLists.txt", "*.in", "*.proto", "*.c"
+    exports = ("*.cmake", "*CMakeLists.txt", "*.in",
+               "*.h", "*.proto", "*.c", "*.cpp",
+               "*.rst", "*.md",
+               )
     exports_sources = "src", "doc", "include", "test", "cmake", "proto"
 
     def config_options(self):
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index ee3471152db7c1ee05e7bff6d584f7305686e9ef..6c123d26653fcbabb57a0b4547b5230ef04a4936 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -89,12 +89,12 @@ if (DOXYGEN_FOUND)
             VERBATIM
             )
         # Copying files is necessary: https://stackoverflow.com/a/45808534/232888
-		FILE(COPY
-		    Examples.rst
-		    README_SETUP.md
+        file(COPY
+            Examples.rst
+            README_SETUP.md
             DEPENDENCIES.md
             # Tutorial.rst
-			DESTINATION "${CMAKE_CURRENT_BINARY_DIR}")
+            DESTINATION "${CMAKE_CURRENT_BINARY_DIR}")
     else ()
         message("Sphinx need to be installed to generate the sphinx documentation")
     endif ()