Petr Lautrbach | 54cb5c6 | 2019-09-24 21:46:37 +0200 | [diff] [blame] | 1 | #!/usr/bin/python3 |
Eric Paris | 1dce0bf | 2013-01-11 14:23:09 -0500 | [diff] [blame] | 2 | |
| 3 | # Author: Thomas Liu <tliu@redhat.com> |
| 4 | # Author: Dan Walsh <dwalsh@redhat.com> |
Jason Zaman | 7e04f54 | 2016-09-23 11:12:13 +0800 | [diff] [blame] | 5 | from distutils.core import setup |
Eric Paris | 1dce0bf | 2013-01-11 14:23:09 -0500 | [diff] [blame] | 6 | |
Jason Zaman | 7e04f54 | 2016-09-23 11:12:13 +0800 | [diff] [blame] | 7 | setup( |
| 8 | name="sepolicy", |
Petr Lautrbach | dca7ce8 | 2019-11-28 13:45:08 +0100 | [diff] [blame] | 9 | version="3.0", |
Jason Zaman | 7e04f54 | 2016-09-23 11:12:13 +0800 | [diff] [blame] | 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 | ) |