add files from allmydata/web to py2exe distribution

when building the py2exe package, glob src/allmydata/web/* into web/ within the dist
This commit is contained in:
robk-tahoe 2008-01-10 15:34:46 -07:00
parent 4cc99ce3b1
commit 0307f29d7f

View 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': {