FIX: conflict in settings.py
[myslice.git] / setup.py
index cb328f5..8783260 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,11 +9,15 @@ import os.path
 from glob import glob
 from distutils.core import setup
 
-# we don't have a final list os let's keep it simple for now
+# we don't have a final list so let's keep it simple for now
 packages= [ os.path.dirname(init) for init in (glob("*/__init__.py")+glob("*/*/__init__.py")) ]
 
 setup(packages = packages,
       scripts = [],
       data_files = [ 
-#        ( dir [ list of paths from toplevel] ) ,
+        ( 'all-static/js', glob ('all-static/js/*')),
+        ( 'all-static/css', glob ('all-static/css/*')),
+        ( 'all-static/img', glob ('all-static/img/*')),
+        ( 'all-templates', glob ('all-templates/*')),
+        ( 'apache', [ 'apache/myslice.conf', 'apache/myslice.wsgi' ]),
         ])