X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;fp=setup.py;h=cb328f5e9ec1ef5ae07edbf1744e675f8b6cac4e;hb=9935cba5a5cce263608115be8417619500686957;hp=0000000000000000000000000000000000000000;hpb=433a5d301336bc9d402af49b2aceb257f57514bb;p=myslice.git diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..cb328f5e --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# +# Setup script for myslice +# +# Thierry Parmentelat +# INRIA (c) 2013 + +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 +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] ) , + ])