From 904898b83d90d3d7f83c574b27a79b98a23e3734 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 7 Apr 2014 16:02:20 -0400 Subject: Rename scripts and mark them as such Mark actual top level scripts as such instead of disguising them as modules. Also remove __init__.py from ipsilon/install as this is not a module just the place where install scripts are kept, for now. Note: Scripts are installed in the bin directory but the contrib spec file moves them to sbin. Signed-off-by: Simo Sorce --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7dd021d..846698b 100755 --- a/setup.py +++ b/setup.py @@ -27,8 +27,7 @@ setup( version = '0.1', license = 'GPLv3+', packages = ['ipsilon', 'ipsilon.admin', 'ipsilon.login', 'ipsilon.util', - 'ipsilon.providers', 'ipsilon.providers.saml2', - 'ipsilon.install'], + 'ipsilon.providers', 'ipsilon.providers.saml2'], data_files = [('share/man/man7', ["man/ipsilon.7"]), ('share/doc/ipsilon', ['COPYING']), ('share/doc/ipsilon/examples', ['examples/ipsilon.conf', @@ -43,6 +42,7 @@ setup( (DATA+'templates/install', glob('templates/install/*.conf')), (DATA+'templates/admin/providers', glob('templates/admin/providers/*.html')), - ] + ], + scripts = ['ipsilon/ipsilon', 'ipsilon/install/ipsilon-server-install'] ) -- cgit