2828# If SKIP_BUILD_COPY is enabled, prevents copying built *.so files back into the source tree
2929SKIP_BUILD_COPY = bool (os .getenv ("SKIP_BUILD_COPY" , "" ))
3030
31- print (
32- f"DEBUG_MODE={ DEBUG_MODE } \n "
33- f"PROFILING_MODE={ PROFILING_MODE } \n "
34- f"ANNOTATION_MODE={ ANNOTATION_MODE } \n "
35- f"PARALLEL_BUILD={ PARALLEL_BUILD } \n "
36- f"SKIP_BUILD_COPY={ SKIP_BUILD_COPY } "
37- )
38-
3931##########################
4032# Cython build options #
4133##########################
@@ -161,6 +153,9 @@ def build(setup_kwargs):
161153
162154if __name__ == "__main__" :
163155 print ("" )
156+ print ("=====================================================================" )
157+ print ("Nautilus Builder" )
158+ print ("=====================================================================" )
164159
165160 # Work around a Cython problem in Python 3.8.x on macOS
166161 # https://github.com/cython/cython/issues/3262
@@ -174,7 +169,6 @@ def build(setup_kwargs):
174169 except ImportError :
175170 print ("multiprocessing not available" )
176171
177- print ("Starting build..." )
178172 # Note: On macOS (and perhaps other platforms), executable files may be
179173 # universal files containing multiple architectures. To determine the
180174 # “64-bitness” of the current interpreter, it is more reliable to query the
@@ -184,5 +178,14 @@ def build(setup_kwargs):
184178 print (f"Python: { platform .python_version ()} " )
185179 print (f"Cython: { cython_compiler_version } " )
186180 print (f"NumPy: { np .__version__ } " )
181+ print ("" )
182+ print ("Starting build..." )
183+ print (f"DEBUG_MODE={ DEBUG_MODE } " )
184+ print (f"PROFILING_MODE={ PROFILING_MODE } " )
185+ print (f"ANNOTATION_MODE={ ANNOTATION_MODE } " )
186+ print (f"PARALLEL_BUILD={ PARALLEL_BUILD } " )
187+ print (f"SKIP_BUILD_COPY={ SKIP_BUILD_COPY } " )
188+ print ("" )
187189
188190 build ({})
191+ print ("Build completed\n " )
0 commit comments