|
| 1 | +# Rename this file to setup.cfg to modify Matplotlib's |
| 2 | +# build options. |
| 3 | + |
| 4 | +[egg_info] |
| 5 | + |
| 6 | +[directories] |
| 7 | +# Uncomment to override the default basedir in setupext.py. |
| 8 | +# This can be a single directory or a comma-delimited list of directories. |
| 9 | +basedirlist = {ndk_sysroot_usr} |
| 10 | + |
| 11 | +[test] |
| 12 | +# If you plan to develop Matplotlib and run or add to the test suite, |
| 13 | +# set this to True. It will download and build a specific version of |
| 14 | +# FreeType, and then use that to build the ft2font extension. This |
| 15 | +# ensures that test images are exactly reproducible. |
| 16 | +# local_freetype = True |
| 17 | + |
| 18 | +[status] |
| 19 | +# To suppress display of the dependencies and their versions |
| 20 | +# at the top of the build log, uncomment the following line: |
| 21 | +#suppress = True |
| 22 | + |
| 23 | +[packages] |
| 24 | +# There are a number of subpackages of Matplotlib that are considered |
| 25 | +# optional. All except tests are installed by default, but that can |
| 26 | +# be changed here. |
| 27 | +# |
| 28 | +tests = False |
| 29 | +sample_data = False |
| 30 | +#toolkits = True |
| 31 | +# Tests for the toolkits are only automatically installed |
| 32 | +# if the tests and toolkits packages are also getting installed. |
| 33 | +toolkits_tests = False |
| 34 | + |
| 35 | +[gui_support] |
| 36 | +# Matplotlib supports multiple GUI toolkits, including |
| 37 | +# GTK3, MacOSX, Qt4, Qt5, Tk, and WX. Support for many of |
| 38 | +# these toolkits requires AGG, the Anti-Grain Geometry library, |
| 39 | +# which is provided by Matplotlib and built by default. |
| 40 | +# |
| 41 | +# Some backends are written in pure Python, and others require |
| 42 | +# extension code to be compiled. By default, Matplotlib checks for |
| 43 | +# these GUI toolkits during installation and, if present, compiles the |
| 44 | +# required extensions to support the toolkit. |
| 45 | +# |
| 46 | +# - Tk support requires Tk development headers and Tkinter. |
| 47 | +# - Mac OSX backend requires the Cocoa headers included with XCode. |
| 48 | +# - Windowing is MS-Windows specific, and requires the "windows.h" |
| 49 | +# header. |
| 50 | +# |
| 51 | +# The other GUI toolkits do not require any extension code, and can be |
| 52 | +# used as long as the libraries are installed on your system -- |
| 53 | +# therefore they are installed unconditionally. |
| 54 | +# |
| 55 | +# You can uncomment any the following lines to change this |
| 56 | +# behavior. Acceptable values are: |
| 57 | +# |
| 58 | +# True: build the extension. Exits with a warning if the |
| 59 | +# required dependencies are not available |
| 60 | +# False: do not build the extension |
| 61 | +# auto: build if the required dependencies are available, |
| 62 | +# otherwise skip silently. This is the default |
| 63 | +# behavior |
| 64 | +# |
| 65 | +agg = True |
| 66 | +cairo = False |
| 67 | +gtk3agg = False |
| 68 | +gtk3cairo = False |
| 69 | +macosx = False |
| 70 | +pyside = False |
| 71 | +qt4agg = False |
| 72 | +tkagg = False |
| 73 | +windowing = False |
| 74 | +wxagg = False |
| 75 | + |
| 76 | +[rc_options] |
| 77 | +# User-configurable options |
| 78 | +# |
| 79 | +# Default backend, one of: Agg, Cairo, GTK3Agg, GTK3Cairo, MacOSX, Pdf, Ps, |
| 80 | +# Qt4Agg, Qt5Agg, SVG, TkAgg, WX, WXAgg. |
| 81 | +# |
| 82 | +# The Agg, Ps, Pdf and SVG backends do not require external dependencies. Do |
| 83 | +# not choose MacOSX, or TkAgg if you have disabled the relevant extension |
| 84 | +# modules. Agg will be used by default. |
| 85 | +# |
| 86 | +backend = Agg |
| 87 | +# |
| 88 | + |
| 89 | +[package_data] |
| 90 | +# Package additional files found in the lib/matplotlib directories. |
| 91 | +# |
| 92 | +# On Windows, package DLL files. |
| 93 | +#dlls = True |
0 commit comments