summaryrefslogtreecommitdiff
blob: b28221ec236b78874fe6a7588b48d541b4720929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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 Trop',
    author_email='asym@gentoo.org',
    url='http://www.python.org/sigs/distutils-sig/', #TODO
    package_dir={'': 'src'},
	packages=['kernelcheck', 'kernelcheck.lib'],
	scripts=['bin/kernel-check']
)