-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 781 Bytes
/
setup.py
File metadata and controls
45 lines (43 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/python
#
# $Id$
# $URL$
#
# Setup script for the Node Manager application
#
# Mark Huang <mlhuang@cs.princeton.edu>
# Copyright (C) 2006 The Trustees of Princeton University
#
# $Id$
#
from distutils.core import setup, Extension
setup(
py_modules=[
'accounts',
'api',
'api_calls',
'bwmon',
'conf_files',
'config',
'controller',
'coresched',
'curlwrapper',
'database',
'iptables',
'logger',
'net',
'nodemanager',
'plcapi',
'safexmlrpc',
'sliver_vs',
'slivermanager',
'ticket',
'tools',
],
scripts = [
'forward_api_calls',
],
packages =[
'plugins',
],
)