From: Kevin A. <ka...@us...> - 2004-08-18 22:19:03
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24462 Modified Files: MANIFEST.in setup.py Log Message: added templates and tests Index: setup.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/setup.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** setup.py 17 Aug 2004 23:27:40 -0000 1.18 --- setup.py 18 Aug 2004 22:18:49 -0000 1.19 *************** *** 61,65 **** return listX ! def makeDataDirs(rootDir=APPLICATION_NAME, dataDirs=['.', 'docs','samples','templates', 'tools']): "Construct a list of the data directories to be included" # This function will return a list of tuples, each tuple being of the form; --- 61,65 ---- return listX ! def makeDataDirs(rootDir=APPLICATION_NAME, dataDirs=['.', 'docs','samples','templates', 'tests', 'tools']): "Construct a list of the data directories to be included" # This function will return a list of tuples, each tuple being of the form; Index: MANIFEST.in =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/MANIFEST.in,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** MANIFEST.in 9 Apr 2004 15:32:23 -0000 1.14 --- MANIFEST.in 18 Aug 2004 22:18:49 -0000 1.15 *************** *** 1,6 **** include *.txt *.cfg recursive-include components * ! recursive-include docs *.txt *.py *.html *.css *.gif *.png recursive-include samples * recursive-include tools * prune samples/addressesZODB --- 1,8 ---- include *.txt *.cfg recursive-include components * ! recursive-include docs *.txt *.py *.html *.css *.gif *.jpg *.png recursive-include samples * + recursive-include templates * + recursive-include tests * recursive-include tools * prune samples/addressesZODB |