X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=fd1cc284227fcb2d5ac41c7fd0eee5ada6670de1;hb=3224c1906c82596a86ae734181488ed14a0f0976;hp=daad93079ccb86bfb348203ee27514c342e185e0;hpb=1b544d909a738a47aebd41cb6fbbfbe446386157;p=nodemanager.git diff --git a/setup.py b/setup.py index daad930..fd1cc28 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ #!/usr/bin/python # +# $Id$ +# $URL$ +# # Setup script for the Node Manager application # # Mark Huang @@ -11,33 +14,31 @@ from distutils.core import setup, Extension setup( - ext_modules=[ - Extension('sioc', ['sioc.c']), - ], py_modules=[ - 'accounts', - 'api', - 'api_calls', - 'conf_files', - 'config', - 'curlwrapper', - 'database', - 'controller', - 'logger', - 'net', - 'nm', - 'plcapi', - 'vsys', - 'safexmlrpc', - 'sliver_vs', - 'sm', - 'ticket', - 'tools', - 'bwmon', - 'codemux', - 'iptables', - ], + 'accounts', + 'api', + 'api_calls', + 'bwmon', + 'conf_files', + 'config', + 'controller', + 'curlwrapper', + 'database', + 'iptables', + 'logger', + 'net', + 'nm', + 'plcapi', + 'safexmlrpc', + 'sliver_vs', + 'sm', + 'ticket', + 'tools', + ], scripts = [ - 'forward_api_calls', - ], + 'forward_api_calls', + ], + packages =[ + 'plugins', + ], )