diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2265a32eadc28d9f22083319e84e12550953aedc..276b5a309a983522c71f2c049e194c0ad87d9cf4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,16 +19,6 @@ execute_process(
     OUTPUT_STRIP_TRAILING_WHITESPACE
     ERROR_QUIET
 )
-
-message(STATUS "Project name: ${CMAKE_PROJECT_NAME}")
-message(STATUS "Project version: ${version}")
-
-execute_process(
-    COMMAND git rev-parse --short HEAD
-    WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
-    OUTPUT_VARIABLE GIT_COMMIT_HASH
-    OUTPUT_STRIP_TRAILING_WHITESPACE
-)
 message(STATUS "Latest git commit: ${GIT_COMMIT_HASH}")
 
 # Define a preprocessor macro with the Git commit version
@@ -65,7 +55,7 @@ file(GLOB_RECURSE inc_files "include/*.hpp")
 add_library(${module_name} ${src_files} ${inc_files})
 target_link_libraries(${module_name}
     PUBLIC
-        _aidge_core # _ is added because we link the target not the project
+        _aidge_core # _ is added because we link the exported target and not the project
 )
 
 #Set target properties
diff --git a/setup.py b/setup.py
index e551567e1d4ba403fcdca0a8823a825670a57508..bd36e531553c7f0a7a65f61509be46c5645465d0 100644
--- a/setup.py
+++ b/setup.py
@@ -106,6 +106,5 @@ if __name__ == "__main__":
         cmdclass={
             "build_ext": CMakeBuild,
         },
-        install_requires=["aidge_core"],
         zip_safe=False,
     )