1*4882a593Smuzhiyunconfig BR2_PACKAGE_PYTHON_MATPLOTLIB 2*4882a593Smuzhiyun bool "python-matplotlib" 3*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 4*4882a593Smuzhiyun depends on BR2_PACKAGE_PYTHON3 5*4882a593Smuzhiyun depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy 7*4882a593Smuzhiyun select BR2_PACKAGE_FREETYPE # runtime 8*4882a593Smuzhiyun select BR2_PACKAGE_LIBPNG # runtime 9*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_CERTIFI # runtime 10*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_CYCLER 11*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime 12*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_DATEUTIL # runtime 13*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_KIWISOLVER # runtime 14*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_NUMPY # runtime 15*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_PYPARSING # runtime 16*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON3_ZLIB # runtime 17*4882a593Smuzhiyun select BR2_PACKAGE_QHULL 18*4882a593Smuzhiyun select BR2_PACKAGE_ZLIB # runtime 19*4882a593Smuzhiyun help 20*4882a593Smuzhiyun Matplotlib strives to produce publication quality 2D 21*4882a593Smuzhiyun graphics for interactive graphing, scientific publishing, 22*4882a593Smuzhiyun user interface development and web application servers 23*4882a593Smuzhiyun targeting multiple user interfaces and hardcopy output 24*4882a593Smuzhiyun formats. 25*4882a593Smuzhiyun 26*4882a593Smuzhiyun https://matplotlib.org/ 27*4882a593Smuzhiyun 28*4882a593Smuzhiyunif BR2_PACKAGE_PYTHON_MATPLOTLIB 29*4882a593Smuzhiyun 30*4882a593Smuzhiyunconfig BR2_PACKAGE_PYTHON_MATPLOTLIB_QT 31*4882a593Smuzhiyun bool "qt display" 32*4882a593Smuzhiyun depends on BR2_PACKAGE_QT5 # python-pyqt5 33*4882a593Smuzhiyun select BR2_PACKAGE_PYTHON_PYQT5 34*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_FONTCONFIG 35*4882a593Smuzhiyun select BR2_PACKAGE_QT5BASE_WIDGETS 36*4882a593Smuzhiyun 37*4882a593Smuzhiyunendif 38*4882a593Smuzhiyun 39*4882a593Smuzhiyuncomment "python-matplotlib needs a glibc or musl toolchain w/ C++" 40*4882a593Smuzhiyun depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL) || \ 41*4882a593Smuzhiyun !BR2_INSTALL_LIBSTDCPP 42