removed template
[myslice.git] / setup.py
1 #!/usr/bin/python
2 #
3 # Setup script for myslice+unfold
4 #
5 # Thierry Parmentelat <thierry.parmentelat@inria.fr>
6 # INRIA (c) 2013
7
8 import os.path
9 import shutil
10 from glob import glob
11 from distutils.core import setup
12
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")) ]
15 print packages
16
17 # Avoid troubles : clean /usr/share/unfold/
18 #shutil.rmtree('/usr/share/unfold/')
19
20 setup(packages = packages,
21       # xxx somehow this does not seem to show up in debian packaging
22       scripts = [ 'apache/unfold-init-ssl.sh' ],
23       data_files = [ 
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', []),
31           ( '/var/unfold', []),
32         ])