summaryrefslogtreecommitdiff
blob: 6a14c924f4f4df20d2ff150b5c8cfea6b90a1a53 (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 -- Gentoo Kernel Security
# Copyright 2009-2010 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 Security',
    author='Bjoern Tropf',
    author_email='asym@gentoo.org',
    url='http://dev.gentoo.org/~asym/guide.xml',
    package_dir={'': 'pym'},
    packages=['kernelcheck', 'kernelcheck.lib'],
    scripts=['bin/kernel-check']
)