ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.1
Committed: Fri Aug 22 12:46:59 2008 UTC (16 years, 8 months ago) by fvlingen
Content type: text/x-python
Branch: MAIN
CVS Tags: WMCORE_0_0_1, WMCORE_BUILD_TEST_0_0_2
Log Message:
Added scripts for building wmcore

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     package_dir={'WMCore': 'src/python/WMCore'},
7     packages=['WMCore',
8     'WMCore.MsgService',
9     'WMCore.MsgService.MySQL',
10     'WMCore.JobFactory',
11     'WMCore.JobSplitting',
12     'WMCore.WMBS',
13     'WMCore.WMBS.SQLite',
14     'WMCore.WMBS.SQLite.Jobs',
15     'WMCore.WMBS.SQLite.Workflow',
16     'WMCore.WMBS.SQLite.Fileset',
17     'WMCore.WMBS.SQLite.Locations',
18     'WMCore.WMBS.SQLite.Files',
19     'WMCore.WMBS.SQLite.Subscriptions',
20     'WMCore.WMBS.Actions',
21     'WMCore.WMBS.Actions.Fileset',
22     'WMCore.WMBS.Actions.Files',
23     'WMCore.WMBS.Actions.Subscriptions',
24     'WMCore.WMBS.WMBSAccountant',
25     'WMCore.WMBS.WMBSAllocater',
26     'WMCore.WMBS.WMBSAllocater.Allocaters',
27     'WMCore.WMBS.WMBSFeeder.Feeders',
28     'WMCore.WMBS.WMBSFeeder',
29     'WMCore.WMBS.MySQL',
30     'WMCore.WMBS.MySQL.Jobs',
31     'WMCore.WMBS.MySQL.Workflow',
32     'WMCore.WMBS.MySQL.Fileset',
33     'WMCore.WMBS.MySQL.Locations',
34     'WMCore.WMBS.MySQL.Files',
35     'WMCore.WMBS.MySQL.Subscriptions',
36     'WMCore.DataStructs',
37     'WMCore.WMBSFeeder.DBS',
38     'WMCore.WMBSFeeder.PhEDExNotifier',
39     'WMCore.WMBSFeeder.Fake',
40     'WMCore.WMBSFeeder',
41     'WMCore.Services.JSONParser',
42     'WMCore.Services.SiteDB',
43     'WMCore.Services',
44     'WMCore.Database'],)
45    
46