ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.13.2.2
Committed: Mon Aug 10 15:09:13 2009 UTC (15 years, 8 months ago) by sfoulkes
Content type: text/x-python
Branch: WMCORE_LEGACY
CVS Tags: WMCORE_T0_0_0_3_pre13
Changes since 1.13.2.1: +0 -1 lines
Log Message:
There's no JSM on this branch...

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 sfoulkes 1.13.2.1 'WMCore.Services.Twitter',
76 fvlingen 1.1 'WMCore.Services',
77 ewv 1.11 'WMCore.SiteScreening',
78 fvlingen 1.4 'WMCore.Database',
79 sfoulkes 1.13.2.1 'WMCore.WebTools',
80     'WMCore.HTTPFrontEnd.WMBS',
81     'WMCore.HTTPFrontEnd',
82 fvlingen 1.4 'WMCore'],)
83 fvlingen 1.7