From: <jd...@us...> - 2008-05-25 21:14:08
|
Revision: 5268 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5268&view=rev Author: jdh2358 Date: 2008-05-25 14:14:01 -0700 (Sun, 25 May 2008) Log Message: ----------- rewrote the readme to describe the dir layout Added Paths: ----------- trunk/matplotlib/README.txt Removed Paths: ------------- trunk/matplotlib/README trunk/matplotlib/coding_guide.rst Deleted: trunk/matplotlib/README =================================================================== --- trunk/matplotlib/README 2008-05-25 20:59:14 UTC (rev 5267) +++ trunk/matplotlib/README 2008-05-25 21:14:01 UTC (rev 5268) @@ -1,70 +0,0 @@ -INTRODUCTION: - - - matplotlib is a pure python 2D plotting library with a Matlab(TM) - syntax which produces publication quality figures using in a - variety of hardcopy formats (PNG, JPG, TIFF, PS) and interactive - GUI environments (WX, GTK) across platforms. matplotlib can be used - in python scripts, interactively from the python shell (ala matlab - or mathematica), in web application servers generating dynamic - charts, or embedded in GTK or WX applications; see backends. - - matplotlib trys to make easy things easy and hard things - possible. You can generate plots, histograms, power spectra, bar - charts, errorcharts, scatterplots, etc, with just a few lines of - code. For example, to make a histogram of data in x, you simply need - to type - - >>> hist(x, 100) # use 100 bins - - - For the power user, you have full control of line styles, font - properties, axes properties, etc, via an object oriented interface - or via a handle graphics interface familiar to matlab users. A - summary of the goals of matplotlib and the progress so far can be - found at http://matplotlib.sf.net/goals.html. - -REQUIREMENTS: - - python 2.3+, and numpy (http://numpy.scipy.org/). Other - requirements are backend dependent. See - http://matplotlib.sourceforge.net/backends.html. If you are using - python2.3, you'll also need to install setuptools; just download - http://peak.telecommunity.com/dist/ez_setup.py and run it. - -INSTALL - - The latest installation instructions can be found at - - http://matplotlib.sourceforge.net/installing.html - - and for backend specific install information see - - http://matplotlib.sourceforge.net/backends.html - - If you want to use matplotlib interactively from the prompt, see - http://matplotlib.sourceforge.net/interactive.html - - -EXAMPLES - - See the examples in the examples dir. To see examples scripts with - the outputs they produce, see - http://matplotlib.sourceforge.net/screenshots.html - -AUTHOR - - John D. Hunter <jd...@gm...> - Copyright (c) 2002-2007 John D. Hunter; All Rights Reserved. - - Jeremy O'Donoghue wrote the wx backend - - See http://matplotlib.sourceforge.net/credits.html for additionaly - contributors - -LICENSE - - Based on that of python 2.2. See the LICENSE file that ships with - the matplotlib source code or - http://matplotlib.sourceforge.net/license.html - Copied: trunk/matplotlib/README.txt (from rev 5265, trunk/matplotlib/README) =================================================================== --- trunk/matplotlib/README.txt (rev 0) +++ trunk/matplotlib/README.txt 2008-05-25 21:14:01 UTC (rev 5268) @@ -0,0 +1,61 @@ +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. + Deleted: trunk/matplotlib/coding_guide.rst =================================================================== --- trunk/matplotlib/coding_guide.rst 2008-05-25 20:59:14 UTC (rev 5267) +++ trunk/matplotlib/coding_guide.rst 2008-05-25 21:14:01 UTC (rev 5268) @@ -1 +0,0 @@ -link doc/devel/coding_guide.rst \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |