|
| 1 | +# Rename this file to setup.cfg to modify matplotlib's |
| 2 | +# build options. |
| 3 | + |
| 4 | +[egg_info] |
| 5 | +tag_svn_revision = 1 |
| 6 | + |
| 7 | +[directories] |
| 8 | +# Uncomment to override the default basedir in setupext.py. |
| 9 | +# This can be a single directory or a space-delimited list of directories. |
| 10 | +#basedirlist = /usr |
| 11 | + |
| 12 | +[status] |
| 13 | +# To suppress display of the dependencies and their versions |
| 14 | +# at the top of the build log, uncomment the following line: |
| 15 | +#suppress = True |
| 16 | +# |
| 17 | +# Uncomment to insert lots of diagnostic prints in extension code |
| 18 | +#verbose = True |
| 19 | + |
| 20 | +[provide_packages] |
| 21 | +# By default, matplotlib checks for a few dependencies and |
| 22 | +# installs them if missing. This feature can be turned off |
| 23 | +# by uncommenting the following lines. Acceptible values are: |
| 24 | +# True: install, overwrite an existing installation |
| 25 | +# False: do not install |
| 26 | +# auto: install only if the package is unavailable. This |
| 27 | +# is the default behavior |
| 28 | +# |
| 29 | +## Date/timezone support: |
| 30 | +#pytz = False |
| 31 | +#dateutil = False |
| 32 | + |
| 33 | +[gui_support] |
| 34 | +# Matplotlib supports multiple GUI toolkits, including Cocoa, |
| 35 | +# GTK, Fltk, MacOSX, Qt, Qt4, Tk, and WX. Support for many of |
| 36 | +# these toolkits requires AGG, the Anti-Grain Geometry library, |
| 37 | +# which is provided by matplotlib and built by default. |
| 38 | +# |
| 39 | +# Some backends are written in pure Python, and others require |
| 40 | +# extension code to be compiled. By default, matplotlib checks |
| 41 | +# for these GUI toolkits during installation and, if present, |
| 42 | +# compiles the required extensions to support the toolkit. GTK |
| 43 | +# support requires the GTK runtime environment and PyGTK. Wx |
| 44 | +# support requires wxWidgets and wxPython. Tk support requires |
| 45 | +# Tk and Tkinter. The other GUI toolkits do not require any |
| 46 | +# extension code, and can be used as long as the libraries are |
| 47 | +# installed on your system. |
| 48 | +# |
| 49 | +# You can uncomment any the following lines if you know you do |
| 50 | +# not want to use the GUI toolkit. Acceptible values are: |
| 51 | +# True: build the extension. Exits with a warning if the |
| 52 | +# required dependencies are not available |
| 53 | +# False: do not build the extension |
| 54 | +# auto: build if the required dependencies are available, |
| 55 | +# otherwise skip silently. This is the default |
| 56 | +# behavior |
| 57 | +# |
| 58 | +gtk = False |
| 59 | +gtkagg = False |
| 60 | +tkagg = False |
| 61 | +wxagg = False |
| 62 | +macosx = False |
| 63 | + |
| 64 | +[rc_options] |
| 65 | +# User-configurable options |
| 66 | +# |
| 67 | +# Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo, |
| 68 | +# FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg. |
| 69 | +# |
| 70 | +# The Agg, Ps, Pdf and SVG backends do not require external |
| 71 | +# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg |
| 72 | +# if you have disabled the relevent extension modules. Agg will be used |
| 73 | +# by default. |
| 74 | +# |
| 75 | +backend = Agg |
| 76 | +# |
| 77 | +# The numerix module was historically used to provide |
| 78 | +# compatibility between the Numeric, numarray, and NumPy array |
| 79 | +# packages. Now that NumPy has emerge as the universal array |
| 80 | +# package for python, numerix is not really necessary and is |
| 81 | +# maintained to provide backward compatibility. Do not change |
| 82 | +# this unless you have a compelling reason to do so. |
| 83 | +#numerix = numpy |
0 commit comments