updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / python-matplotlib-git / setup.cfg
blob4e005676c8943f20a2fb707bb53598daf631ebe1
1 # Rename this file to setup.cfg to modify matplotlib's
2 # build options.
4 [egg_info]
6 [directories]
7 # Uncomment to override the default basedir in setupext.py.
8 # This can be a single directory or a space-delimited list of directories.
9 #basedirlist = /usr
11 [status]
12 # To suppress display of the dependencies and their versions
13 # at the top of the build log, uncomment the following line:
14 #suppress = True
16 # Uncomment to insert lots of diagnostic prints in extension code
17 #verbose = True
19 [provide_packages]
20 # By default, matplotlib checks for a few dependencies and
21 # installs them if missing. This feature can be turned off
22 # by uncommenting the following lines. Acceptible values are:
23 #     True: install, overwrite an existing installation
24 #     False: do not install
25 #     auto: install only if the package is unavailable. This
26 #           is the default behavior
28 ## Date/timezone support:
29 pytz = False
30 dateutil = False
32 [gui_support]
33 # Matplotlib supports multiple GUI toolkits, including Cocoa,
34 # GTK, Fltk, MacOSX, Qt, Qt4, Tk, and WX. Support for many of
35 # these toolkits requires AGG, the Anti-Grain Geometry library,
36 # which is provided by matplotlib and built by default.
38 # Some backends are written in pure Python, and others require
39 # extension code to be compiled. By default, matplotlib checks
40 # for these GUI toolkits during installation and, if present,
41 # compiles the required extensions to support the toolkit. GTK
42 # support requires the GTK runtime environment and PyGTK. Wx
43 # support requires wxWidgets and wxPython. Tk support requires
44 # Tk and Tkinter. The other GUI toolkits do not require any
45 # extension code, and can be used as long as the libraries are
46 # installed on your system.
48 # You can uncomment any the following lines if you know you do
49 # not want to use the GUI toolkit. Acceptible values are:
50 #     True: build the extension. Exits with a warning if the
51 #           required dependencies are not available
52 #     False: do not build the extension
53 #     auto: build if the required dependencies are available,
54 #           otherwise skip silently. This is the default
55 #           behavior
57 #gtk = False
58 #gtkagg = False
59 #tkagg = False
60 #macosx = False
62 [rc_options]
63 # User-configurable options
65 # Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo,
66 # FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg.
68 # The Agg, Ps, Pdf and SVG backends do not require external
69 # dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg
70 # if you have disabled the relevent extension modules.  Agg will be used
71 # by default.
73 #backend = Agg