You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
Python
57 lines
1.5 KiB
Python
from distutils.core import setup, Extension
|
|
|
|
|
|
module_FFTMA = Extension(
|
|
"FFTMA",
|
|
include_dirs=["./include"],
|
|
sources=[
|
|
"moduleFFTMA.c",
|
|
"./lib_src/Py_getvalues.c",
|
|
"./lib_src/Py_kgeneration.c",
|
|
"./lib_src/random.c",
|
|
"./lib_src/simpio.c",
|
|
"./lib_src/strlib.c",
|
|
"./lib_src/symtab.c",
|
|
"./lib_src/scanadt.c",
|
|
"./lib_src/stack.c",
|
|
"./lib_src/gammf.c",
|
|
"./lib_src/axes.c",
|
|
"./lib_src/cgrid.c",
|
|
"./lib_src/covariance.c",
|
|
"./lib_src/fourt.c",
|
|
"./lib_src/length.c",
|
|
"./lib_src/maxfactor.c",
|
|
"./lib_src/test_fact.c",
|
|
"./lib_src/cov_value.c",
|
|
"./lib_src/generate.c",
|
|
"./lib_src/gasdev.c",
|
|
"./lib_src/ran2.c",
|
|
"./lib_src/stable.c",
|
|
"./lib_src/gaussian.c",
|
|
"./lib_src/power.c",
|
|
"./lib_src/cubic.c",
|
|
"./lib_src/spherical.c",
|
|
"./lib_src/nugget.c",
|
|
"./lib_src/exponential.c",
|
|
"./lib_src/cardsin.c",
|
|
"./lib_src/nor2log.c",
|
|
"./lib_src/fftma2.c",
|
|
"./lib_src/prebuild_gwn.c",
|
|
"./lib_src/build_real.c",
|
|
"./lib_src/clean_real.c",
|
|
"./lib_src/build_pressure.c",
|
|
"./lib_src/build_velocity.c",
|
|
"./lib_src/mat_vec.c",
|
|
"./lib_src/inputdata.c",
|
|
"./lib_src/inputfiledata.c",
|
|
"./lib_src/debuginput.c",
|
|
"./lib_src/readfile_bin.c",
|
|
"./lib_src/testmemory.c",
|
|
"./lib_src/testopenfile.c",
|
|
"./lib_src/genlib.c",
|
|
],
|
|
)
|
|
|
|
|
|
setup(ext_modules=[module_FFTMA])
|