aboutsummaryrefslogtreecommitdiffstats
path: root/src/setup.py
blob: acc0db66ecec8b8cd640ea5bf720a57b541590c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
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']) ]
)