setools/setup.py
2014-07-08 14:28:55 -04:00

24 lines
646 B
Python

#!/usr/bin/env python
from setuptools import setup
from libapol import __version__
setup(name='setools',
version=__version__,
description='SELinux Policy tools.',
author='Tresys Technology, LLC',
author_email='setools@tresys.com',
url='https://github.com/TresysTechnology/setools',
packages=['libapol', 'libapol.policyrep'],
scripts = ['seinfo', 'seinfoflow', 'sesearch', 'sedta'],
data_files=[('/usr/share/setools', ['data/perm_map'])],
test_suite='tests',
license='GPLv2+, LGPLv2.1+',
classifiers=[
'Environment :: Console',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Utilities',
],
)