/* -*- c -*- */ /* * This is a dummy module whose purpose is to get distutils to generate the * configuration files before the libraries are made. */ #define NPY_NO_DEPRECATED_API NPY_API_VERSION #define NO_IMPORT_ARRAY #define PY_SSIZE_T_CLEAN #include #include "npy_pycompat.h" static struct PyMethodDef methods[] = { {NULL, NULL, 0, NULL} }; static struct PyModuleDef moduledef = { PyModuleDef_HEAD_INIT, "dummy", NULL, -1, methods, NULL, NULL, NULL, NULL }; /* Initialization function for the module */ PyMODINIT_FUNC PyInit__dummy(void) { PyObject *m; m = PyModule_Create(&moduledef); if (!m) { return NULL; } return m; }