#!/usr/bin/env python # kernel-check -- Kernel security information # Copyright 2009-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 from distutils.core import setup __version__ = open("VERSION").read().strip() setup( name='Kernel-check', version=__version__, description='Gentoo kernel tracking tool', author='Bjoern Tropf', author_email='asym@gentoo.org', url='http://dev.gentoo.org/~asym/guide.xml', package_dir={'': 'src'}, packages=['kernelcheck', 'kernelcheck.lib'], scripts=['bin/kernel-check'] )