File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55INTERACTIVE
66KNOWN_BUGS
77LICENSE
8- MANIFEST
98MANIFEST.in
109Makefile
1110README
@@ -58,6 +57,7 @@ examples/psd_demo.py
5857examples/pstest.py
5958examples/scatter_demo.py
6059examples/scatter_demo2.py
60+ examples/scatter_marker.py
6161examples/simple_plot.py
6262examples/stock_demo.py
6363examples/subplot_demo.py
@@ -158,6 +158,7 @@ matplotlib/table.py
158158matplotlib/text.py
159159matplotlib/transforms.py
160160matplotlib/backends/__init__.py
161+ matplotlib/backends/backend_agg.py
161162matplotlib/backends/backend_gd.py
162163matplotlib/backends/backend_gtk.py
163164matplotlib/backends/backend_gtkgd.py
@@ -166,9 +167,9 @@ matplotlib/backends/backend_ps.py
166167matplotlib/backends/backend_template.py
167168matplotlib/backends/backend_wx.py
168169matplotlib/backends/ttf_font_manager.py
169- src/_backend_agg.cpp
170170test/README
171171test/alignment_test.py
172+ test/backend_agg_test.py
172173test/bar_test.py
173174test/batchtest.py
174175test/batchtest2.py
@@ -180,6 +181,7 @@ test/gd2gtk_test.py
180181test/gtk2_test.py
181182test/highres_test.py
182183test/hist_test.py
184+ test/histogram_demo.py
183185test/line_thickness.py
184186test/lots_o_points.py
185187test/manset.py
@@ -194,6 +196,7 @@ test/print_only.py
194196test/rounding.py
195197test/semilog_test.py
196198test/specgram_demo.py
199+ test/subplot_demo.py
197200test/table_demo.py
198201test/table_demo3.py
199202test/table_test.py
Original file line number Diff line number Diff line change 22# Copyright (C) 2003 <[email protected] >33# $Header$
44# $Log$
5+ # Revision 1.18 2004/02/11 00:07:44 jdh2358
6+ # relocated gtkgd ext mod
7+ #
58# Revision 1.17 2004/01/30 21:33:19 jdh2358
69# last changes for 0.50e
710#
@@ -62,27 +65,29 @@ DISTFILES = API_CHANGES KNOWN_BUGS INSTALL README TODO LICENSE \
6265 CHANGELOG Makefile GOALS INTERACTIVE \
6366 MANIFEST.in matplotlib examples setup.py
6467
65- MODULES = \
68+ MODULES = \
69+ matplotlib.afm \
6670 matplotlib.artist \
6771 matplotlib.axes \
6872 matplotlib.axis \
6973 matplotlib.backend_bases \
74+ matplotlib.backends.backend_agg \
7075 matplotlib.backends.backend_gd \
7176 matplotlib.backends.backend_gtk \
72- matplotlib.backends.backend_gtkgd \
77+ matplotlib.backends.backend_gtkgd \
7378 matplotlib.backends.backend_ps \
7479 matplotlib.backends.backend_template \
80+ matplotlib.backends.backend_wx \
7581 matplotlib.cbook \
7682 matplotlib.figure \
7783 matplotlib.legend \
7884 matplotlib.lines \
7985 matplotlib.matlab \
8086 matplotlib.mlab \
8187 matplotlib.patches \
88+ matplotlib.table \
8289 matplotlib.text \
8390 matplotlib.transforms \
84- matplotlib.afm \
85- matplotlib.backends.backend_wx
8691
8792RELEASE = matplotlib-${VERSION}
8893
Original file line number Diff line number Diff line change 11from matplotlib .matlab import *
22
3+ figure (1 )
34t = arange (0.0 , 1.0 , 0.02 )
45s = sin (2 * 2 * pi * t )
56plot (t , s , 'x' )
Original file line number Diff line number Diff line change 1919 build_agg (ext_modules )
2020
2121setup (name = "matplotlib" ,
22- version = '0.50i ' ,
22+ version = '0.50j ' ,
2323 description = "Matlab style python plotting package" ,
2424 author = "John D. Hunter" ,
2525
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def add_gd_flags(module):
4141
4242
4343def build_gtkgd (ext_modules ):
44- module = Extension ('matplotlib._gtkgd' ,
44+ module = Extension ('matplotlib.backends. _gtkgd' ,
4545 ['src/_gtkgd.c' ],
4646 )
4747 add_pygtk_flags (module )
You can’t perform that action at this time.
0 commit comments