From: Mike C. F. <mcf...@us...> - 2004-06-21 05:19:49
|
Update of /cvsroot/pydispatcher/dispatch In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31369 Modified Files: MANIFEST.in Log Message: Working around what appears to be platform-specificity in the manifest.in file. As seen here produces the 1.0.0 release including the reference documentation when run on a Win32 system. Should figure out why the results are so different on the two platforms some day. Index: MANIFEST.in =================================================================== RCS file: /cvsroot/pydispatcher/dispatch/MANIFEST.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MANIFEST.in 17 Jun 2004 05:39:03 -0000 1.3 --- MANIFEST.in 21 Jun 2004 05:19:39 -0000 1.4 *************** *** 1,11 **** include MANIFEST.in include license.txt ! include * ! include docs/* ! include docs/images/* ! include docs/style/* ! include docs/pydoc/* ! include tests/* ! include examples/* global-exclude *.bat --- 1,12 ---- include MANIFEST.in include license.txt ! include *.py ! include docs *.html ! include docs/images *.png ! include docs/style *.css ! include docs/pydoc *.html *.py ! include examples *.py global-exclude *.bat + global-exclude ./CVS + global-exclude .cvsignore |