blob: fa60ef6ce3865f53e8e12ddf7ba21200f6f718b7 [file] [log] [blame]
Petr Lautrbach54cb5c62019-09-24 21:46:37 +02001#!/usr/bin/python3
Eric Paris1dce0bf2013-01-11 14:23:09 -05002
3# Author: Thomas Liu <tliu@redhat.com>
4# Author: Dan Walsh <dwalsh@redhat.com>
Jason Zaman7e04f542016-09-23 11:12:13 +08005from distutils.core import setup
Eric Paris1dce0bf2013-01-11 14:23:09 -05006
Jason Zaman7e04f542016-09-23 11:12:13 +08007setup(
8 name="sepolicy",
Petr Lautrbachdca7ce82019-11-28 13:45:08 +01009 version="3.0",
Jason Zaman7e04f542016-09-23 11:12:13 +080010 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)