X-Git-Url: http://git.onelab.eu/?p=nodemanager.git;a=blobdiff_plain;f=setup.py;h=2d8604051c3766f0810c133c3a31d3b25930ffe5;hp=1904ed5ddb4064f0a2d9fa1f6deb5cf930c8cc0a;hb=HEAD;hpb=4c88de9b6d163ff0a7e78945597241ee29be628d diff --git a/setup.py b/setup.py index 1904ed5..2d86040 100644 --- a/setup.py +++ b/setup.py @@ -1,42 +1,58 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Setup script for the Node Manager application # # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: setup.py,v 1.4 2006/11/28 21:36:06 mlhuang Exp $ -# -from distutils.core import setup, Extension +from distutils.core import setup setup( - ext_modules=[ - Extension('sioc', ['sioc.c']), - ], py_modules=[ - 'accounts', - 'api', - 'api_calls', - 'conf_files', - 'config', - 'curlwrapper', - 'database', - 'delegate', - 'logger', - 'net', - 'nm', - 'plcapi', - 'proper', - 'safexmlrpc', - 'sliver_vs', - 'sm', - 'ticket', - 'tools', - 'bwmon', - 'iptables', - ], - scripts = [ - 'forward_api_calls', - ], + 'account', + 'api', + 'api_calls', + 'bwmon', + 'conf_files', + 'config', + 'controller', + 'curlwrapper', + 'database', + 'initscript', + 'iptables', + 'logger', + 'net', + 'nodemanager', + 'plcapi', + 'safexmlrpc', + 'slivermanager', + 'ticket', + 'tools', + 'plugins.codemux', + 'plugins.hostmap', + 'plugins.interfaces', + 'plugins.omf_resctl', + 'plugins.rawdisk', + 'plugins.reservation', + 'plugins.sfagids', + 'plugins.sliverauth', + 'plugins.specialaccounts', + 'plugins.syndicate', + 'plugins.vsys', + 'plugins.vsys_privs', + 'plugins.ipv6', + 'plugins.update_ipv6addr_slivertag', +# lxc + 'sliver_libvirt', + 'sliver_lxc', + 'cgroups', + 'coresched_lxc', + 'plugins.privatebridge', +# vs + 'sliver_vs', + 'coresched_vs', + # this plugin uses vserver for now + 'plugins.drl', + ], )