aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 679b34e8ebdd9b0516e9ba6baefa136237288142 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python
"""
setup.py - Setup package with the help from Python's DistUtils and friends.
"""
from distutils.core import setup
import os, sys

setup(
    name = 'sos',
    version = '1.9',
    author = 'Adam Stokes',
    author_email = 'astokes@fedoraproject.org',
    url = 'http://fedorahosted.org/sos',
    description = 'SOS - son of sysreport',
    packages = ['sos','sos.plugins'],
    scripts = ["sosreport", "extras/rh-upload"],
    data_files = data_files,
)