setup.py: add sediff

This commit is contained in:
Chris PeBenito 2016-01-07 14:48:50 -05:00
parent cce7c505e2
commit 668ad8e66a

View File

@ -140,8 +140,8 @@ setup(name='setools',
cmdclass={'build_yacc': YaccCommand, cmdclass={'build_yacc': YaccCommand,
'build_lex': LexCommand, 'build_lex': LexCommand,
'build_ext': BuildExtCommand}, 'build_ext': BuildExtCommand},
packages=['setools', 'setools.policyrep', 'setoolsgui', 'setoolsgui.apol'], packages=['setools', 'setools.diff', 'setools.policyrep', 'setoolsgui', 'setoolsgui.apol'],
scripts=['apol', 'seinfo', 'seinfoflow', 'sesearch', 'sedta'], scripts=['apol', 'sediff', 'seinfo', 'seinfoflow', 'sesearch', 'sedta'],
data_files=[(join(sys.prefix, 'share/setools'), glob.glob("data/*.ui") + ["data/perm_map"] ), data_files=[(join(sys.prefix, 'share/setools'), glob.glob("data/*.ui") + ["data/perm_map"] ),
(join(sys.prefix, 'share/setools/icons'), glob.glob("data/icons/*.png"))], (join(sys.prefix, 'share/setools/icons'), glob.glob("data/icons/*.png"))],
ext_modules=ext_py_mods, ext_modules=ext_py_mods,