updated on Mon Jan 23 04:00:55 UTC 2012
[aur-mirror.git] / python2-matplotlib-noqt / setup.cfg
blob1fcc7271259bf933d24fc874f215c886a59b941c
1 # Rename this file to setup.cfg to modify matplotlib's
2 # build options.
4 [egg_info]
5 tag_svn_revision = 1
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
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
17 # Uncomment to insert lots of diagnostic prints in extension code
18 #verbose = True
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
29 ## Date/timezone support:
30 #pytz = False
31 #dateutil = False
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.
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.
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
58 gtk = True
59 gtkagg = True
60 tkagg = True
61 wxagg = True
62 macosx = False
64 [rc_options]
65 # User-configurable options
67 # Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo,
68 # FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg.
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.
75 backend = GTKAgg
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