blob: 5c4f2e5db96b230bf5d58d34cbc1fbc3cf550dd1 [file] [edit]
#!/usr/bin/python3
# Author: Thomas Liu <tliu@redhat.com>
# Author: Dan Walsh <dwalsh@redhat.com>
from setuptools import setup
setup(
name="sepolicy",
version="3.11",
description="Python SELinux Policy Analyses bindings",
packages=[
"sepolicy",
"sepolicy.templates",
"sepolicy.help"
],
package_data={
'sepolicy': ['*.glade'],
'sepolicy.help': ['*.txt', '*.png']
}
)