projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cc99ce
)
add files from allmydata/web to py2exe distribution
author
robk-tahoe
<robk-tahoe@allmydata.com>
Thu, 10 Jan 2008 22:34:46 +0000
(15:34 -0700)
committer
robk-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
patch
|
blob
|
history
diff --git
a/windows/setup.py
b/windows/setup.py
index 47a56ed4c5f53f7f78a5e85454328d0dd7d9ccc2..f401cc337d7961b1e0625b78c7ec8bc6dca8773a 100644
(file)
--- a/
windows/setup.py
+++ b/
windows/setup.py
@@
-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': {