ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.14
Committed: Wed May 20 10:36:15 2009 UTC (15 years, 11 months ago) by swakef
Content type: text/x-python
Branch: MAIN
CVS Tags: WMCORE_PA_0_12_16, T0_DQM_WMCORE_0_0_1, WMCORE_DAS_pre7, WMCORE_0_1_1_pre10, WMCORE_DAS_pre6, WMCORE_DAS_pre5, WMCORE_PA_0_12_15, WMCORE_DAS_pre4, WMCORE_DAS_pre3, WMCORE_DAS_pre2, WMCORE_0_1_1_pre9, WMCORE_DAS_V01_04_00_pre1, WMCORE_0_1_1_pre8, WMCORE_PA_0_12_15_pre3
Changes since 1.13: +0 -1 lines
Log Message:
ErrorHandler.Handler no longer exists

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 sfoulkes 1.10 'WMCore.Alerts.MySQL',
21     'WMCore.Alerts',
22 fvlingen 1.4 'WMCore.Agent',
23 swakef 1.13 'WMCore.Algorithms',
24 fvlingen 1.1 'WMCore.JobSplitting',
25     'WMCore.WMBS.SQLite.Jobs',
26 sfoulkes 1.12 'WMCore.WMBS.SQLite.Masks',
27 fvlingen 1.1 'WMCore.WMBS.SQLite.Workflow',
28 fvlingen 1.4 'WMCore.WMBS.SQLite.JobGroup',
29 fvlingen 1.1 'WMCore.WMBS.SQLite.Fileset',
30     'WMCore.WMBS.SQLite.Locations',
31     'WMCore.WMBS.SQLite.Files',
32     'WMCore.WMBS.SQLite.Subscriptions',
33 fvlingen 1.4 'WMCore.WMBS.SQLite',
34 sfoulkes 1.12 'WMCore.WMBS.Oracle.Jobs',
35     'WMCore.WMBS.Oracle.Masks',
36     'WMCore.WMBS.Oracle.Workflow',
37     'WMCore.WMBS.Oracle.JobGroup',
38     'WMCore.WMBS.Oracle.Fileset',
39     'WMCore.WMBS.Oracle.Locations',
40     'WMCore.WMBS.Oracle.Files',
41     'WMCore.WMBS.Oracle.Subscriptions',
42     'WMCore.WMBS.Oracle',
43 fvlingen 1.1 'WMCore.WMBS.Actions.Fileset',
44     'WMCore.WMBS.Actions.Files',
45     'WMCore.WMBS.Actions.Subscriptions',
46 fvlingen 1.4 'WMCore.WMBS.Actions',
47 fvlingen 1.1 'WMCore.WMBS.WMBSAccountant',
48 fvlingen 1.4 'WMCore.WMBS.Oracle',
49     'WMCore.WMBS.WMBSAllocater.Allocaters',
50 fvlingen 1.1 'WMCore.WMBS.WMBSAllocater',
51     'WMCore.WMBS.WMBSFeeder.Feeders',
52     'WMCore.WMBS.WMBSFeeder',
53 fvlingen 1.4 'WMCore.WMBS.T0AST',
54 fvlingen 1.1 'WMCore.WMBS.MySQL.Jobs',
55 sfoulkes 1.12 'WMCore.WMBS.MySQL.Masks',
56 fvlingen 1.1 'WMCore.WMBS.MySQL.Workflow',
57 fvlingen 1.4 'WMCore.WMBS.MySQL.JobGroup',
58 fvlingen 1.1 'WMCore.WMBS.MySQL.Fileset',
59     'WMCore.WMBS.MySQL.Locations',
60     'WMCore.WMBS.MySQL.Files',
61     'WMCore.WMBS.MySQL.Subscriptions',
62 fvlingen 1.4 'WMCore.WMBS.MySQL',
63     'WMCore.WMBS',
64 fvlingen 1.1 'WMCore.DataStructs',
65     'WMCore.WMBSFeeder.DBS',
66     'WMCore.WMBSFeeder.PhEDExNotifier',
67     'WMCore.WMBSFeeder.Fake',
68     'WMCore.WMBSFeeder',
69 fvlingen 1.4 'WMCore.ThreadPool.MySQL',
70     'WMCore.ThreadPool',
71 fvlingen 1.7 'WMCore.Services.SAM',
72 metson 1.6 'WMCore.Services.Dashboard',
73 fvlingen 1.1 'WMCore.Services.JSONParser',
74     'WMCore.Services.SiteDB',
75     'WMCore.Services',
76 ewv 1.11 'WMCore.SiteScreening',
77 fvlingen 1.4 'WMCore.Database',
78     'WMCore'],)
79 fvlingen 1.7