ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.11
Committed: Tue Nov 4 17:02:46 2008 UTC (16 years, 5 months ago) by ewv
Content type: text/x-python
Branch: MAIN
CVS Tags: WMCORE_0_1_1_pre1, WMCORE_0_1_0, WMCORE_T0_0_0_2_pre28, WMCORE_0_0_12
Changes since 1.10: +1 -0 lines
Log Message:
Add SiteScreening

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.Handler',
10     'WMComponent.ErrorHandler.Database.MySQL',
11     'WMComponent.ErrorHandler.Database',
12 fvlingen 1.4 'WMComponent.ErrorHandler',
13 fvlingen 1.7 'WMComponent',
14     'WMQuality',
15     'WMCore.MsgService.Oracle',
16 fvlingen 1.4 'WMCore.MsgService.MySQL',
17 fvlingen 1.1 'WMCore.MsgService',
18 fvlingen 1.7 'WMCore.Trigger.Oracle',
19 fvlingen 1.4 'WMCore.Trigger.MySQL',
20     'WMCore.Trigger',
21 sfoulkes 1.10 'WMCore.Alerts.MySQL',
22     'WMCore.Alerts',
23 fvlingen 1.4 'WMCore.Agent',
24 fvlingen 1.1 'WMCore.JobSplitting',
25     'WMCore.WMBS.SQLite.Jobs',
26     'WMCore.WMBS.SQLite.Workflow',
27 fvlingen 1.4 'WMCore.WMBS.SQLite.JobGroup',
28 fvlingen 1.1 'WMCore.WMBS.SQLite.Fileset',
29     'WMCore.WMBS.SQLite.Locations',
30     'WMCore.WMBS.SQLite.Files',
31     'WMCore.WMBS.SQLite.Subscriptions',
32 fvlingen 1.4 'WMCore.WMBS.SQLite',
33 fvlingen 1.1 'WMCore.WMBS.Actions.Fileset',
34     'WMCore.WMBS.Actions.Files',
35     'WMCore.WMBS.Actions.Subscriptions',
36 fvlingen 1.4 'WMCore.WMBS.Actions',
37 fvlingen 1.1 'WMCore.WMBS.WMBSAccountant',
38 fvlingen 1.4 'WMCore.WMBS.Oracle',
39     'WMCore.WMBS.WMBSAllocater.Allocaters',
40 fvlingen 1.1 'WMCore.WMBS.WMBSAllocater',
41     'WMCore.WMBS.WMBSFeeder.Feeders',
42     'WMCore.WMBS.WMBSFeeder',
43 fvlingen 1.4 'WMCore.WMBS.T0AST',
44 fvlingen 1.1 'WMCore.WMBS.MySQL.Jobs',
45     'WMCore.WMBS.MySQL.Workflow',
46 fvlingen 1.4 'WMCore.WMBS.MySQL.JobGroup',
47 fvlingen 1.1 'WMCore.WMBS.MySQL.Fileset',
48     'WMCore.WMBS.MySQL.Locations',
49     'WMCore.WMBS.MySQL.Files',
50     'WMCore.WMBS.MySQL.Subscriptions',
51 fvlingen 1.4 'WMCore.WMBS.MySQL',
52     'WMCore.WMBS',
53 fvlingen 1.1 'WMCore.DataStructs',
54     'WMCore.WMBSFeeder.DBS',
55     'WMCore.WMBSFeeder.PhEDExNotifier',
56     'WMCore.WMBSFeeder.Fake',
57     'WMCore.WMBSFeeder',
58 fvlingen 1.4 'WMCore.ThreadPool.MySQL',
59     'WMCore.ThreadPool',
60 fvlingen 1.7 'WMCore.Services.SAM',
61 metson 1.6 'WMCore.Services.Dashboard',
62 fvlingen 1.1 'WMCore.Services.JSONParser',
63     'WMCore.Services.SiteDB',
64     'WMCore.Services',
65 ewv 1.11 'WMCore.SiteScreening',
66 fvlingen 1.4 'WMCore.Database',
67     'WMCore'],)
68 fvlingen 1.7