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