summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 52287c61405e45905e2db7cd086a9b1325690b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup

setup(name='firstaidkit',
      version='0.2.11',
      description='System Rescue Tool',
      author='Martin Sivak / Joel Andres Granados',
      author_email='msivak@redhat.com / jgranado@redhat.com',
      url='http://fedorahosted.org/firstaidkit',
      license='GPLv2+',
      packages = ['pyfirstaidkit', 'pyfirstaidkit/utils'],
      scripts = ['firstaidkit', 'firstaidkitrevert', 'firstaidkit-qs']
      )