wok diff matplotlib/stuff/setup.cfg @ rev 13733

Add xdigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 25 16:40:45 2012 +0100 (2012-12-25)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/matplotlib/stuff/setup.cfg	Tue Dec 25 16:40:45 2012 +0100
     1.3 @@ -0,0 +1,79 @@
     1.4 +# Rename this file to setup.cfg to modify matplotlib's
     1.5 +# build options.
     1.6 +
     1.7 +[egg_info]
     1.8 +tag_svn_revision = 1
     1.9 +
    1.10 +[status]
    1.11 +# To suppress display of the dependencies and their versions
    1.12 +# at the top of the build log, uncomment the following line:
    1.13 +#suppress = True
    1.14 +#
    1.15 +# Uncomment to insert lots of diagnostic prints in extension code
    1.16 +#verbose = True
    1.17 +
    1.18 +[provide_packages]
    1.19 +# By default, matplotlib checks for a few dependencies and
    1.20 +# installs them if missing. This feature can be turned off
    1.21 +# by uncommenting the following lines. Acceptible values are:
    1.22 +#     True: install, overwrite an existing installation
    1.23 +#     False: do not install
    1.24 +#     auto: install only if the package is unavailable. This
    1.25 +#           is the default behavior
    1.26 +#
    1.27 +## Date/timezone support:
    1.28 +pytz = True
    1.29 +dateutil = True
    1.30 +
    1.31 +
    1.32 +[gui_support]
    1.33 +# Matplotlib supports multiple GUI toolkits, including Cocoa,
    1.34 +# GTK, Fltk, MacOSX, Qt, Qt4, Tk, and WX. Support for many of
    1.35 +# these toolkits requires AGG, the Anti-Grain Geometry library,
    1.36 +# which is provided by matplotlib and built by default.
    1.37 +#
    1.38 +# Some backends are written in pure Python, and others require
    1.39 +# extension code to be compiled. By default, matplotlib checks
    1.40 +# for these GUI toolkits during installation and, if present,
    1.41 +# compiles the required extensions to support the toolkit. GTK
    1.42 +# support requires the GTK runtime environment and PyGTK. Wx
    1.43 +# support requires wxWidgets and wxPython. Tk support requires
    1.44 +# Tk and Tkinter. The other GUI toolkits do not require any
    1.45 +# extension code, and can be used as long as the libraries are
    1.46 +# installed on your system.
    1.47 +#
    1.48 +# You can uncomment any the following lines if you know you do
    1.49 +# not want to use the GUI toolkit. Acceptible values are:
    1.50 +#     True: build the extension. Exits with a warning if the
    1.51 +#           required dependencies are not available
    1.52 +#     False: do not build the extension
    1.53 +#     auto: build if the required dependencies are available,
    1.54 +#           otherwise skip silently. This is the default
    1.55 +#           behavior
    1.56 +#
    1.57 +#gtk = False
    1.58 +gtkagg = True
    1.59 +tkagg = False
    1.60 +wxagg = False
    1.61 +macosx = False
    1.62 +
    1.63 +[rc_options]
    1.64 +# User-configurable options
    1.65 +#
    1.66 +# Default backend, one of: Agg, Cairo, CocoaAgg, GTK, GTKAgg, GTKCairo,
    1.67 +# FltkAgg, MacOSX, Pdf, Ps, QtAgg, Qt4Agg, SVG, TkAgg, WX, WXAgg.
    1.68 +#
    1.69 +# The Agg, Ps, Pdf and SVG backends do not require external
    1.70 +# dependencies. Do not choose GTK, GTKAgg, GTKCairo, MacOSX, TkAgg or WXAgg
    1.71 +# if you have disabled the relevent extension modules.  Agg will be used
    1.72 +# by default.
    1.73 +#
    1.74 +backend = GTKAgg
    1.75 +#
    1.76 +# The numerix module was historically used to provide
    1.77 +# compatibility between the Numeric, numarray, and NumPy array
    1.78 +# packages. Now that NumPy has emerge as the universal array
    1.79 +# package for python, numerix is not really necessary and is
    1.80 +# maintained to provide backward compatibility. Do not change
    1.81 +# this unless you have a compelling reason to do so.
    1.82 +#numerix = numpy