aboutsummaryrefslogtreecommitdiffstats
path: root/src/setup.py
blob: 88d0add55e1606350458c2f2148e7b5bc8732402 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
setup.py - Setup package with the help from Python's DistUtils
"""

from distutils.core import setup
from ConfigParser import ConfigParser
import sys,os,time

# change version in spec file along with this string
setup(
	name = 'sos',
	version = '1.6',
	license = 'GPL',
	description = 'System Support Tools',
	long_description = """Sos is a set of tools that gathers information about system
	hardware and configuration. The information can then be used for
	diagnostic purposes and debugging. Sos is commonly used to help
	support technicians and developers.""",
	author = 'Steve Conklin, et al.',
	author_email = 'sconklin@redhat.com',
	url = 'http://sos.108.redhat.com/',
	packages = ['sos', 'sos.plugins'],
	scripts = [],
	package_dir = {'': 'lib',},
	# data_files is broken for building dists, works for installs
	data_files = [('/usr/sbin', ['sosreport']), ('/usr/share/man/man1', ['sosreport.1.gz']) ]
)