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

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