diff --git a/binarycpython/utils/functions.py b/binarycpython/utils/functions.py
index b98619a72da8c8972de77d34102a830437590a62..29e413f4800c0635a341c1a7ac05554279cf14a9 100644
--- a/binarycpython/utils/functions.py
+++ b/binarycpython/utils/functions.py
@@ -123,7 +123,7 @@ def create_hdf5(data_dir):
 
     # Get data files
     data_files = [el for el in content_data_dir if el.endswith(".dat")]
-    print(data_files)
+
     # Create the file
     hdf5_filename = os.path.join(
         data_dir, "{base_name}.hdf5".format(base_name=base_name)
diff --git a/setup.py b/setup.py
index cd1c0651982b182a6337e32bdb0f2cda244020c9..a28235d80d88925d27bd00ba416de9a7e3eb6e94 100644
--- a/setup.py
+++ b/setup.py
@@ -58,6 +58,25 @@ API_h = os.environ["BINARY_C"] + "/src/API/binary_c_API.h"
 binary_c_define_macros.extend([("BINARY_C_API_H", API_h)])
 
 
+
+print("binary_c_config": binary_c_config)
+print("incdirs:",binary_c_incdirs)
+print("binary_c_libdirs: ", binary_c_libdirs)
+print("binary_c_cflags: ",binary_c_cflags)
+print("binary_c_libs: ",binary_c_libs)
+print("API_h:",API_h)
+print("macros:",binary_c_define_macros)
+
+
+
+
+
+
+
+
+
+
+
 binary_c_python_api_module = Extension(
     # name="binarycpython.core.binary_c",
     name="binary_c_python_api",