public
Fork of astraw/matplotlib
Description: python 2D plotting library
Homepage: http://matplotlib.sourceforge.net/
Clone URL: git://github.com/mattfoster/matplotlib.git
name age message
file CHANGELOG Tue Dec 02 23:40:09 -0800 2008 reorganization of style classes in patches.py ... [leejjoon]
directory CXX/ Thu Apr 24 06:23:05 -0700 2008 Remove a bunch of compiler warnings. git-svn-... [mdboom]
file DEVNOTES Fri Jul 21 14:07:28 -0700 2006 add notes about building a setuptools-compatibl... [astraw]
file FILETYPES Thu Sep 06 12:36:34 -0700 2007 Fix typo git-svn-id: https://matplotlib.svn.s... [mdboom]
file INSTALL Tue Jan 08 10:58:39 -0800 2008 fixed perrys typos git-svn-id: https://matplot... [jdh2358]
file INTERACTIVE Mon May 12 12:47:22 -0700 2003 lots of interactive fixes and an INTERACTIVE ho... [jdh2358]
file KNOWN_BUGS Thu Feb 19 12:27:35 -0800 2004 added freetype2 to agg git-svn-id: https://ma... [jdh2358]
file MANIFEST.in Tue Jun 24 11:13:40 -0700 2008 tagging 98.2 git-svn-id: file:///mnt/workdisk/... [jdh2358]
file MIGRATION.txt Fri May 30 12:38:42 -0700 2008 Merged revisions 5312-5313,5329 via svnmerge fr... [jdh2358]
file Makefile Thu Jun 19 09:54:54 -0700 2008 added auto subplots adj faq git-svn-id: file:/... [jdh2358]
file README.txt Sun May 25 14:14:01 -0700 2008 rewrote the readme to describe the dir layout ... [jdh2358]
file SEGFAULTS Thu Apr 20 06:38:17 -0700 2006 added help file for diagnosing segfaults git-s... [jdh2358]
file TODO Thu Jan 19 05:24:04 -0800 2006 added delimiter to pylab save git-svn-id: fil... [jdh2358]
file __init__.py Fri Mar 04 19:19:37 -0800 2005 fixed whacked init git-svn-id: https://matplo... [jdh2358]
directory agg24/ Wed Oct 08 11:16:49 -0700 2008 More informative error message when data is too... [mdboom]
file boilerplate.py Sun Nov 23 11:56:37 -0800 2008 moved fill_between to axes/pyplot method git-s... [jdh2358]
directory doc/ Thu Dec 04 12:05:40 -0800 2008 git documentation: actually make 'install from ... [astraw]
directory examples/ Wed Dec 03 10:50:49 -0800 2008 use standard axes creation func git-svn-id: ht... [jdh2358]
directory lib/ Thu Dec 04 11:01:44 -0800 2008 Fix autosized angle brackets in mathtext. git... [mdboom]
file license.py Thu Jun 07 06:30:30 -0700 2007 remove trailing spaces git-svn-id: https://mat... [nnemec]
directory license/ Tue Nov 27 17:31:59 -0800 2007 version bumps git-svn-id: https://matplotlib.s... [cmoad]
file matplotlibrc.template Tue Nov 25 13:43:36 -0800 2008 added rc param axes.unicode_minus git-svn-id: ... [jdh2358]
file setup.cfg.template Mon Jun 09 08:58:45 -0700 2008 dont install enthought.traits git-svn-id: fil... [dsdale]
file setup.py Wed Oct 15 08:39:44 -0700 2008 more screenshot updates git-svn-id: file:///mn... [jdh2358]
file setupegg.py Thu Jan 10 05:01:38 -0800 2008 move toolkits to mpl_toolkits, make mpl_toolkit... [jswhit]
file setupext.py Sat Nov 08 10:33:01 -0800 2008 Improve error reporting when pygtk or gtk+ head... [efiring]
directory src/ Tue Dec 02 11:51:10 -0800 2008 suppress gcc-4.3 warnings git-svn-id: https://... [mdboom]
directory ttconv/ Wed May 28 06:36:50 -0700 2008 Merged revisions 5276-5283 via svnmerge from ht... [mdboom]
directory unit/ Mon Jul 28 12:59:19 -0700 2008 commented out seterr in npy -- ma looks broken ... [jdh2358]
README.txt
Overview of the matplotlib src tree
===================================

This is the source directory for matplotlib, which contains the
following files and directories.

* doc - the matplotlib documentation.  See doc/users for the user's
  documentation and doc/devel for the developers documentation

* examples - a bunch of examples using matplotib.  See
  examples/README.txt for information

* setup.cfg.template - used to configure the matplotlib build process.
  Copy this file to setup.cfg if you want to override the default
  build behavior

* matplotlibrc.template - a template file used to generate the
  matplotlibrc config file at build time.  The matplotlibrc file will
  be installed in matplotlib/mpl-data/matplotlibrc

* lib - the python src code.  matplotlib ships several third party
  packages here.  The subdirectory lib/matplotlib contains the python
  src code for matplotlib

* src - the matplotlib extension code, mostly C++

* ttconv - some truetype font utilities

* license - all the licenses for code included with matplotlib.
  matplotlib uses only BSD compatible code

* unit - some unit tests

* CHANGELOG - all the significant changes to matplotlib, organized by
  release.  The top of this file will show you the most recent changes

* API_CHANGES - any change that alters the API is listed here.  The
  entries are organized by release, with most recent entries first

* MIGRATION.txt - instructions on moving from the 0.91 code to the
  0.98 trunk.

* SEGFAULTS - some tips for how to diagnose and debug segfaults

* setup.py - the matplotlib build script

* setupext.py - some helper code for setup.py to build the matplotlib
  extensions

* boilerplate.py - some code to automatically generate the pyplot
  wrappers

* DEVNOTES - deprecated developer notes.  TODO: update and move to the
  doc/devel framework

* FILETYPES - This is a table of the output formats supported by each
  backend.  TODO: move to doc/users

* INTERACTIVE - instructions on using matplotlib interactively, eg
  from the python shell.  TODO: update and move to doc/users.