--- trunk/finley/py_src/SConscript 2006/03/27 02:43:09 682 +++ trunk/finley/py_src/SConscript 2006/04/06 00:13:40 700 @@ -12,3 +12,9 @@ local_env.Depends(pyc, dep_lib) local_env.Install(pyinstall+'/finley', pyc) + +# get all the python files in the release tar file +release_py = [ env.File("SConscript"), ] + [ env.File(x) for x in python_src ] +env.Zip(src_zipfile, release_py) +env.Tar(src_tarfile, release_py) +