|
From: <jd...@us...> - 2011-01-02 22:46:21
|
Revision: 8871
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8871&view=rev
Author: jdh2358
Date: 2011-01-02 22:46:13 +0000 (Sun, 02 Jan 2011)
Log Message:
-----------
added freestanding dist support for sample_data
Added Paths:
-----------
trunk/sample_data/MANIFEST.in
trunk/sample_data/README.txt
trunk/sample_data/setup.py
Added: trunk/sample_data/MANIFEST.in
===================================================================
--- trunk/sample_data/MANIFEST.in (rev 0)
+++ trunk/sample_data/MANIFEST.in 2011-01-02 22:46:13 UTC (rev 8871)
@@ -0,0 +1,5 @@
+include *.png *.jpg *.csv *.dat *.npy *.xrc *.ima
+include setup.py MANIFEST.in MANIFEST
+recursive-include axes_grid *
+recursive-include testdir *
+
Added: trunk/sample_data/README.txt
===================================================================
--- trunk/sample_data/README.txt (rev 0)
+++ trunk/sample_data/README.txt 2011-01-02 22:46:13 UTC (rev 8871)
@@ -0,0 +1,2 @@
+This is the sample data needed for some of matplotlib's examples and
+docs. See matplotlib.cbook.get_sample_data for more info.
Added: trunk/sample_data/setup.py
===================================================================
--- trunk/sample_data/setup.py (rev 0)
+++ trunk/sample_data/setup.py 2011-01-02 22:46:13 UTC (rev 8871)
@@ -0,0 +1,9 @@
+from distutils.core import setup
+
+setup(name='mpl_sampledata',
+ version='1.0.1rc',
+ description='matplotlib sample data',
+ author='John Hunter',
+ author_email='jd...@gm...',
+ url='http://matplotlib.sf.net',
+ )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|