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

setup(name='firstaidkit',
      version='0.2.6',
      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']
      )