ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.13.2.3
Committed: Wed Sep 2 19:39:32 2009 UTC (15 years, 7 months ago) by sryu
Content type: text/x-python
Branch: WMCORE_LEGACY
CVS Tags: WMCORE_T0_0_0_3_pre17, WMCORE_T0_0_0_3_pre14
Changes since 1.13.2.2: +1 -0 lines
Log Message:
add Alerts.Oracle in setup

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.8 package_dir={'WMCore': 'src/python/WMCore','WMComponent' : 'src/python/WMComponent','WMQuality' : 'src/python/WMQuality'},
7 fvlingen 1.7 packages=['WMComponent.Proxy.Handler',
8     'WMComponent.Proxy',
9     'WMComponent.ErrorHandler.Database.MySQL',
10     'WMComponent.ErrorHandler.Database',
11 fvlingen 1.4 'WMComponent.ErrorHandler',
12 fvlingen 1.7 'WMComponent',
13     'WMQuality',
14     'WMCore.MsgService.Oracle',
15 fvlingen 1.4 'WMCore.MsgService.MySQL',
16 fvlingen 1.1 'WMCore.MsgService',
17 fvlingen 1.7 'WMCore.Trigger.Oracle',
18 fvlingen 1.4 'WMCore.Trigger.MySQL',
19     'WMCore.Trigger',
20 sryu 1.13.2.3 'WMCore.Alerts.Oracle',
21 sfoulkes 1.10 'WMCore.Alerts.MySQL',
22     'WMCore.Alerts',
23 fvlingen 1.4 'WMCore.Agent',
24 swakef 1.13 'WMCore.Algorithms',
25 fvlingen 1.1 'WMCore.JobSplitting',
26     'WMCore.WMBS.SQLite.Jobs',
27 sfoulkes 1.12 'WMCore.WMBS.SQLite.Masks',
28 fvlingen 1.1 'WMCore.WMBS.SQLite.Workflow',
29 fvlingen 1.4 'WMCore.WMBS.SQLite.JobGroup',
30 fvlingen 1.1 'WMCore.WMBS.SQLite.Fileset',
31     'WMCore.WMBS.SQLite.Locations',
32     'WMCore.WMBS.SQLite.Files',
33     'WMCore.WMBS.SQLite.Subscriptions',
34 fvlingen 1.4 'WMCore.WMBS.SQLite',
35 sfoulkes 1.12 'WMCore.WMBS.Oracle.Jobs',
36     'WMCore.WMBS.Oracle.Masks',
37     'WMCore.WMBS.Oracle.Workflow',
38     'WMCore.WMBS.Oracle.JobGroup',
39     'WMCore.WMBS.Oracle.Fileset',
40     'WMCore.WMBS.Oracle.Locations',
41     'WMCore.WMBS.Oracle.Files',
42     'WMCore.WMBS.Oracle.Subscriptions',
43     'WMCore.WMBS.Oracle',
44 fvlingen 1.1 'WMCore.WMBS.Actions.Fileset',
45     'WMCore.WMBS.Actions.Files',
46     'WMCore.WMBS.Actions.Subscriptions',
47 fvlingen 1.4 'WMCore.WMBS.Actions',
48 fvlingen 1.1 'WMCore.WMBS.WMBSAccountant',
49 fvlingen 1.4 'WMCore.WMBS.Oracle',
50     'WMCore.WMBS.WMBSAllocater.Allocaters',
51 fvlingen 1.1 'WMCore.WMBS.WMBSAllocater',
52     'WMCore.WMBS.WMBSFeeder.Feeders',
53     'WMCore.WMBS.WMBSFeeder',
54 fvlingen 1.4 'WMCore.WMBS.T0AST',
55 fvlingen 1.1 'WMCore.WMBS.MySQL.Jobs',
56 sfoulkes 1.12 'WMCore.WMBS.MySQL.Masks',
57 fvlingen 1.1 'WMCore.WMBS.MySQL.Workflow',
58 fvlingen 1.4 'WMCore.WMBS.MySQL.JobGroup',
59 fvlingen 1.1 'WMCore.WMBS.MySQL.Fileset',
60     'WMCore.WMBS.MySQL.Locations',
61     'WMCore.WMBS.MySQL.Files',
62     'WMCore.WMBS.MySQL.Subscriptions',
63 fvlingen 1.4 'WMCore.WMBS.MySQL',
64     'WMCore.WMBS',
65 fvlingen 1.1 'WMCore.DataStructs',
66     'WMCore.WMBSFeeder.DBS',
67     'WMCore.WMBSFeeder.PhEDExNotifier',
68     'WMCore.WMBSFeeder.Fake',
69     'WMCore.WMBSFeeder',
70 fvlingen 1.4 'WMCore.ThreadPool.MySQL',
71     'WMCore.ThreadPool',
72 fvlingen 1.7 'WMCore.Services.SAM',
73 metson 1.6 'WMCore.Services.Dashboard',
74 fvlingen 1.1 'WMCore.Services.JSONParser',
75     'WMCore.Services.SiteDB',
76 sfoulkes 1.13.2.1 'WMCore.Services.Twitter',
77 fvlingen 1.1 'WMCore.Services',
78 ewv 1.11 'WMCore.SiteScreening',
79 fvlingen 1.4 'WMCore.Database',
80 sfoulkes 1.13.2.1 'WMCore.WebTools',
81     'WMCore.HTTPFrontEnd.WMBS',
82     'WMCore.HTTPFrontEnd',
83 fvlingen 1.4 'WMCore'],)
84 fvlingen 1.7