1# Rename this file to setup.cfg to modify matplotlib's
2# build options.
3
4[egg_info]
5tag_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:
30pytz = False
31dateutil = 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#
58gtk = False
59gtkagg = False
60qt4agg = False
61qt5agg = False
62tkagg = True
63wxagg = False
64#macosx = False
65
66[rc_options]
67# User-configurable options
68#
69# Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo,
70# FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg.
71#
72# The Agg, Ps, Pdf and SVG backends do not require external
73# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg
74# if you have disabled the relevent extension modules.  Agg will be used
75# by default.
76#
77#backend = Agg
78#
79# The numerix module was historically used to provide
80# compatibility between the Numeric, numarray, and NumPy array
81# packages. Now that NumPy has emerge as the universal array
82# package for python, numerix is not really necessary and is
83# maintained to provide backward compatibility. Do not change
84