Fixed bug: select columns all checked in filters, autocomplete based on query_all...
[myslice.git] / setup.py
index cb328f5..98d1368 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -9,11 +9,16 @@ 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] ) ,
+        ( 'static/js', glob ('static/js/*')),
+        ( 'static/css', glob ('static/css/*')),
+        ( 'static/img', glob ('static/img/*')),
+        ( 'static/fonts', glob ('static/fonts/*')),
+        ( 'templates', glob ('templates/*')),
+        ( 'apache', [ 'apache/myslice.conf', 'apache/myslice.wsgi' ]),
         ])