X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=157641a970cf13871b96c69404e46afec54b9701;hb=7ac6b8ac4422eeff85370e103c72c9413343e879;hp=cb328f5e9ec1ef5ae07edbf1744e675f8b6cac4e;hpb=9935cba5a5cce263608115be8417619500686957;p=myslice.git diff --git a/setup.py b/setup.py index cb328f5e..157641a9 100644 --- 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' ]), ])