""" setup.py - Setup package with the help from Python's DistUtils """ from distutils.core import setup setup( name = 'sos', packages = ['sos', 'sos.plugins'], scripts = [], package_dir = {'': 'lib',}, data_files = [('/usr/sbin', ['sosreport']), ('/usr/share/man/man1', ['sosreport.1']) ] )