splitting python complete

This commit is contained in:
Oleksandr Bezdieniezhnykh
2025-08-12 14:48:56 +03:00
parent fc6e5db795
commit ad782bcbaa
31 changed files with 834 additions and 369 deletions
+8 -8
View File
@@ -2,15 +2,15 @@ from setuptools import setup, Extension
from Cython.Build import cythonize
import numpy as np
# debug_args = {}
# trace_line = False
debug_args = {}
trace_line = False
debug_args = {
'extra_compile_args': ['-O0', '-g'],
'extra_link_args': ['-g'],
'define_macros': [('CYTHON_TRACE_NOGIL', '1')]
}
trace_line = True
# debug_args = {
# 'extra_compile_args': ['-O0', '-g'],
# 'extra_link_args': ['-g'],
# 'define_macros': [('CYTHON_TRACE_NOGIL', '1')]
# }
# trace_line = True
extensions = [
Extension('constants_inf', ['constants_inf.pyx'], **debug_args),