ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.8
Committed: Thu Oct 2 09:30:24 2008 UTC (16 years, 6 months ago) by fvlingen
Content type: text/x-python
Branch: MAIN
CVS Tags: WMCORE_0_0_7, WMCORE_0_0_6, WMCORE_0_0_5
Changes since 1.7: +1 -1 lines
Log Message:
Added missing package.

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     'WMCore.Agent',
22 fvlingen 1.1 'WMCore.JobSplitting',
23     'WMCore.WMBS.SQLite.Jobs',
24     'WMCore.WMBS.SQLite.Workflow',
25 fvlingen 1.4 'WMCore.WMBS.SQLite.JobGroup',
26 fvlingen 1.1 'WMCore.WMBS.SQLite.Fileset',
27     'WMCore.WMBS.SQLite.Locations',
28     'WMCore.WMBS.SQLite.Files',
29     'WMCore.WMBS.SQLite.Subscriptions',
30 fvlingen 1.4 'WMCore.WMBS.SQLite',
31 fvlingen 1.1 'WMCore.WMBS.Actions.Fileset',
32     'WMCore.WMBS.Actions.Files',
33     'WMCore.WMBS.Actions.Subscriptions',
34 fvlingen 1.4 'WMCore.WMBS.Actions',
35 fvlingen 1.1 'WMCore.WMBS.WMBSAccountant',
36 fvlingen 1.4 'WMCore.WMBS.Oracle',
37     'WMCore.WMBS.WMBSAllocater.Allocaters',
38 fvlingen 1.1 'WMCore.WMBS.WMBSAllocater',
39     'WMCore.WMBS.WMBSFeeder.Feeders',
40     'WMCore.WMBS.WMBSFeeder',
41 fvlingen 1.4 'WMCore.WMBS.T0AST',
42 fvlingen 1.1 'WMCore.WMBS.MySQL.Jobs',
43     'WMCore.WMBS.MySQL.Workflow',
44 fvlingen 1.4 'WMCore.WMBS.MySQL.JobGroup',
45 fvlingen 1.1 'WMCore.WMBS.MySQL.Fileset',
46     'WMCore.WMBS.MySQL.Locations',
47     'WMCore.WMBS.MySQL.Files',
48     'WMCore.WMBS.MySQL.Subscriptions',
49 fvlingen 1.4 'WMCore.WMBS.MySQL',
50     'WMCore.WMBS',
51 fvlingen 1.1 'WMCore.DataStructs',
52     'WMCore.WMBSFeeder.DBS',
53     'WMCore.WMBSFeeder.PhEDExNotifier',
54     'WMCore.WMBSFeeder.Fake',
55     'WMCore.WMBSFeeder',
56 fvlingen 1.4 'WMCore.ThreadPool.MySQL',
57     'WMCore.ThreadPool',
58 fvlingen 1.7 'WMCore.Services.SAM',
59 metson 1.6 'WMCore.Services.Dashboard',
60 fvlingen 1.1 'WMCore.Services.JSONParser',
61     'WMCore.Services.SiteDB',
62     'WMCore.Services',
63 fvlingen 1.4 'WMCore.Database',
64 fvlingen 1.7 'WMCore.FwkJobReport',
65 fvlingen 1.4 'WMCore'],)
66 fvlingen 1.7