1#!/usr/bin/python3 2 3# Author: Thomas Liu <tliu@redhat.com> 4# Author: Dan Walsh <dwalsh@redhat.com> 5from distutils.core import setup 6 7setup( 8 name="sepolicy", 9 version="3.0", 10 description="Python SELinux Policy Analyses bindings", 11 author="Daniel Walsh", 12 author_email="dwalsh@redhat.com", 13 packages=[ 14 "sepolicy", 15 "sepolicy.templates", 16 "sepolicy.help" 17 ], 18 package_data={ 19 'sepolicy': ['*.glade'], 20 'sepolicy.help': ['*.txt', '*.png'] 21 } 22) 23