]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
add files from allmydata/web to py2exe distribution
authorrobk-tahoe <robk-tahoe@allmydata.com>
Thu, 10 Jan 2008 22:34:46 +0000 (15:34 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Thu, 10 Jan 2008 22:34:46 +0000 (15:34 -0700)
when building the py2exe package, glob src/allmydata/web/* into web/ within the dist

windows/setup.py

index 47a56ed4c5f53f7f78a5e85454328d0dd7d9ccc2..f401cc337d7961b1e0625b78c7ec8bc6dca8773a 100644 (file)
@@ -1,6 +1,8 @@
 from distutils.core import setup
 import py2exe
 
+import glob
+
 setup_args = {
     'name': 'Tahoe',
     'description': 'Allmydata Tahoe distributated storage',
@@ -16,6 +18,7 @@ setup_args = {
     'data_files': [
         ('.', [
         ],),
+        ('web', glob.glob('../src/allmydata/web/*')),
     ],
     'zipfile' : 'library.zip',
     'options': {