File setup.cfg of Package failed_python-pyFFTW
[metadata]
name = pyFFTW
version = 0.14.0
description = pyFFTW (packaged without compiled extensions for this build)
long_description = file: README.md
long_description_content_type = text/markdown
author = Unknown
license = MIT
[options]
packages = find:
include_package_data = True
zip_safe = False
[options.packages.find]
where = .
[flake8]
max-line-length = 88
[tool:pytest]
python_files = test_*.py
# Note:
# This packaging configuration intentionally uses setuptools to build a pure-Python wheel
# and does not declare/compile the native C extension modules present in the original
# pyFFTW sources. This avoids the platform-specific FFTW and Cython compilation errors
# encountered in the riscv64 build environment. If you need the compiled extension,
# restore the original pyproject.toml and build with an environment providing FFTW
# (including any optional OpenMP FFTW variants) and a working Cython toolchain.