3 # Setup script for myslice+unfold
5 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
11 from distutils.core import setup
13 # we don't have a final list so let's keep it simple for now
14 packages= [ os.path.dirname(init) for init in (glob("*/__init__.py")+glob("*/*/__init__.py")) ]
17 # Avoid troubles : clean /usr/share/unfold/
18 #shutil.rmtree('/usr/share/unfold/')
20 setup(packages = packages,
21 # xxx somehow this does not seem to show up in debian packaging
22 scripts = [ 'apache/unfold-init-ssl.sh' ],
24 ( '/usr/share/unfold/static/js', glob ('static/js/*')),
25 ( '/usr/share/unfold/static/css', glob ('static/css/*')),
26 ( '/usr/share/unfold/static/img', glob ('static/img/*')),
27 ( '/usr/share/unfold/static/fonts', glob ('static/fonts/*')),
28 ( '/usr/share/unfold/templates', glob ('templates/*')),
29 ( 'apache', [ 'apache/unfold.conf', 'apache/unfold-ssl.conf', 'apache/unfold.wsgi' ]),
30 ( '/etc/unfold/trusted_roots', []),