From 1fe1275220612f98668302d126181218578f9f75 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sun, 18 Jan 2009 18:21:32 +0530 Subject: Add autotua.crypt to setup.py It won't get installed unless it's added to the list of modules to install. --- slave/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slave/setup.py b/slave/setup.py index c41999c..e26e4aa 100755 --- a/slave/setup.py +++ b/slave/setup.py @@ -30,7 +30,7 @@ class print_help(Command): """ setup(name='autotua-slave', - version='0.0.1', + version='0.0.2', description='Build slave for AutotuA', author='Nirbheek Chauhan', author_email='nirbheek.chauhan@gmail.com', @@ -38,6 +38,6 @@ setup(name='autotua-slave', url='http://www.autotua.org/', cmdclass={'help': print_help}, data_files=[('/etc/autotua', ['config/slave.cfg']), ('/usr/bin', ['scripts/git-proxy-cmd.sh'])], - packages=['autotua', 'autotua.chroot', 'autotua.daemon', 'autotua.fetch', 'autotua.jobuild', 'autotua.sync'], + packages=['autotua', 'autotua.chroot', 'autotua.daemon', 'autotua.fetch', 'autotua.jobuild', 'autotua.sync', 'autotua.crypt'], package_data={'autotua': ['bin/*.sh']}, ) -- cgit v1.2.3-65-gdbad