X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=e902e32f4e458e2085c547674c4e1524e471d6c6;hb=c025814eadebf386f556f9af571d3f04e2124a80;hp=a45105bea489d840a4d883241d5e6d61f0f89e68;hpb=557959f0e08f90646409d70f0231186d7a612c34;p=myslice.git diff --git a/setup.py b/setup.py index a45105be..e902e32f 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +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 = [], + scripts = [ 'apache/unfold-init-ssl.sh' ], data_files = [ - ( 'all-static', glob ('all-static/*')), - ( 'all-templates', glob ('all-templates/*')), + ( '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' ]), ])