🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 04:43:59 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
core
/
tests
/
examples
/
cython
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/core/tests/examples/cython
🔄 Refresh
✏️
Editing: setup.py
Read Only
""" Provide python-space access to the functions exposed in numpy/__init__.pxd for testing. """ import numpy as np from distutils.core import setup from Cython.Build import cythonize from setuptools.extension import Extension import os macros = [("NPY_NO_DEPRECATED_API", 0)] checks = Extension( "checks", sources=[os.path.join('.', "checks.pyx")], include_dirs=[np.get_include()], define_macros=macros, ) extensions = [checks] setup( ext_modules=cythonize(extensions) )
💾 Save Changes
❌ Cancel