#!/usr/bin/python """ Installation script for the sface, the sfa GUI """ from distutils.core import setup bins = ['sface-run'] package_dirs = ['sface', 'sface/screens'] setup(name='sface', packages = package_dirs, data_files = [ ('sface/images',['macos/graphic-sfa.png','macos/graphic-sfa64.png'] ) , ] , ext_modules = [], py_modules = [], scripts = bins)