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 Loading commit data...
directory CXX/
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: file:///mnt/workdisk/tmp... [mdboom]
file INSTALL Tue Jan 08 10:58:39 -0800 2008 fixed perrys typos git-svn-id: file:///mnt/wor... [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: file:///mn... [jdh2358]
file MANIFEST.in
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
file __init__.py Fri Mar 04 19:19:37 -0800 2005 fixed whacked init git-svn-id: https://matplo... [jdh2358]
directory agg24/
file boilerplate.py
directory doc/
directory examples/
directory lib/
file license.py Thu Jun 07 06:30:30 -0700 2007 remove trailing spaces git-svn-id: file:///mnt... [nnemec]
directory license/ Tue Nov 27 17:31:59 -0800 2007 version bumps git-svn-id: file:///mnt/workdisk... [cmoad]
file matplotlibrc.template
file setup.cfg.template
file setup.py
file setupegg.py Thu Jan 10 05:01:38 -0800 2008 move toolkits to mpl_toolkits, make mpl_toolkit... [jswhit]
file setupext.py
directory src/
directory ttconv/ Wed May 28 06:36:50 -0700 2008 Merged revisions 5276-5283 via svnmerge from ht... [mdboom]
directory unit/
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.