ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.6
Committed: Thu Sep 18 22:42:54 2008 UTC (16 years, 7 months ago) by metson
Content type: text/x-python
Branch: MAIN
Changes since 1.5: +2 -0 lines
Log Message:
add new services

File Contents

# User Rev Content
1 fvlingen 1.1 #!/usr/bin/env python
2     from distutils.core import setup
3    
4     setup (name='wmcore',
5     version='1.0',
6 fvlingen 1.5 package_dir={'WMCore': 'src/python/WMCore','WMComponent' : 'src/python/WMComponent'},
7     packages=['WMComponent',
8 fvlingen 1.4 'WMComponent.ErrorHandler',
9 fvlingen 1.5 'WMComponent.ErrorHandler.Handler',
10 fvlingen 1.4 'WMCore.MsgService.MySQL',
11 fvlingen 1.1 'WMCore.MsgService',
12 fvlingen 1.4 'WMCore.Trigger.MySQL',
13     'WMCore.Trigger',
14     'WMCore.Agent',
15 fvlingen 1.1 'WMCore.JobSplitting',
16     'WMCore.WMBS.SQLite.Jobs',
17     'WMCore.WMBS.SQLite.Workflow',
18 fvlingen 1.4 'WMCore.WMBS.SQLite.JobGroup',
19 fvlingen 1.1 'WMCore.WMBS.SQLite.Fileset',
20     'WMCore.WMBS.SQLite.Locations',
21     'WMCore.WMBS.SQLite.Files',
22     'WMCore.WMBS.SQLite.Subscriptions',
23 fvlingen 1.4 'WMCore.WMBS.SQLite',
24 fvlingen 1.1 'WMCore.WMBS.Actions.Fileset',
25     'WMCore.WMBS.Actions.Files',
26     'WMCore.WMBS.Actions.Subscriptions',
27 fvlingen 1.4 'WMCore.WMBS.Actions',
28 fvlingen 1.1 'WMCore.WMBS.WMBSAccountant',
29 fvlingen 1.4 'WMCore.WMBS.Oracle',
30     'WMCore.WMBS.WMBSAllocater.Allocaters',
31 fvlingen 1.1 'WMCore.WMBS.WMBSAllocater',
32     'WMCore.WMBS.WMBSFeeder.Feeders',
33     'WMCore.WMBS.WMBSFeeder',
34 fvlingen 1.4 'WMCore.WMBS.T0AST',
35 fvlingen 1.1 'WMCore.WMBS.MySQL.Jobs',
36     'WMCore.WMBS.MySQL.Workflow',
37 fvlingen 1.4 'WMCore.WMBS.MySQL.JobGroup',
38 fvlingen 1.1 'WMCore.WMBS.MySQL.Fileset',
39     'WMCore.WMBS.MySQL.Locations',
40     'WMCore.WMBS.MySQL.Files',
41     'WMCore.WMBS.MySQL.Subscriptions',
42 fvlingen 1.4 'WMCore.WMBS.MySQL',
43     'WMCore.WMBS',
44 fvlingen 1.1 'WMCore.DataStructs',
45     'WMCore.WMBSFeeder.DBS',
46     'WMCore.WMBSFeeder.PhEDExNotifier',
47     'WMCore.WMBSFeeder.Fake',
48     'WMCore.WMBSFeeder',
49 fvlingen 1.4 'WMCore.ThreadPool.MySQL',
50     'WMCore.ThreadPool',
51 metson 1.6 'WMCore.Services.Dashboard',
52 fvlingen 1.1 'WMCore.Services.JSONParser',
53     'WMCore.Services.SiteDB',
54 metson 1.6 'WMCore.Services.SAM',
55 fvlingen 1.1 'WMCore.Services',
56 fvlingen 1.4 'WMCore.Database',
57     'WMCore'],)