Home | History | Annotate | Download | only in sepolicy
      1 #!/usr/bin/env python
      2 
      3 # Author: Thomas Liu <tliu (at] redhat.com>
      4 # Author: Dan Walsh <dwalsh (at] redhat.com>
      5 from distutils.core import setup
      6 
      7 setup(
      8     name="sepolicy",
      9     version="1.1",
     10     description="Python SELinux Policy Analyses bindings",
     11     author="Daniel Walsh",
     12     author_email="dwalsh (at] 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