2019-05-09 17:58:50 +02:00
|
|
|
config BR2_PACKAGE_PYTHON_MATPLOTLIB
|
|
|
|
bool "python-matplotlib"
|
2019-08-02 18:22:26 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2019-05-09 17:58:50 +02:00
|
|
|
depends on BR2_PACKAGE_PYTHON3
|
2019-05-26 17:52:23 +02:00
|
|
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
2019-08-08 17:19:50 +02:00
|
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
|
2019-05-09 17:58:50 +02:00
|
|
|
select BR2_PACKAGE_FREETYPE # runtime
|
|
|
|
select BR2_PACKAGE_LIBPNG # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_CYCLER
|
|
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_NUMPY # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_PYPARSING # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON3_ZLIB # runtime
|
|
|
|
select BR2_PACKAGE_ZLIB # runtime
|
|
|
|
help
|
2019-06-01 14:38:57 +02:00
|
|
|
Matplotlib strives to produce publication quality 2D
|
|
|
|
graphics for interactive graphing, scientific publishing,
|
|
|
|
user interface development and web application servers
|
|
|
|
targeting multiple user interfaces and hardcopy output
|
2019-05-09 17:58:50 +02:00
|
|
|
formats.
|
|
|
|
|
|
|
|
https://matplotlib.org/
|
2019-08-02 18:22:26 +02:00
|
|
|
|
|
|
|
comment "python-matplotlib needs a toolchain w/ C++"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
2019-08-08 17:19:50 +02:00
|
|
|
|
|
|
|
comment "python-matplotlib needs glibc or musl"
|
|
|
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|