ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WMCORE/setup.py
Revision: 1.3
Committed: Mon Sep 15 12:44:43 2008 UTC (16 years, 7 months ago) by fvlingen
Content type: text/x-python
Branch: MAIN
Changes since 1.2: +0 -1 lines
Log Message:
Removed package WMCore.JobFactory which does not seem to exist.

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 fvlingen 1.2 'WMCore.ThreadPool.MySQL',
11     'WMCore.ThreadPool',
12 fvlingen 1.1 'WMCore.JobSplitting',
13     'WMCore.WMBS',
14     'WMCore.WMBS.SQLite',
15     'WMCore.WMBS.SQLite.Jobs',
16     'WMCore.WMBS.SQLite.Workflow',
17     'WMCore.WMBS.SQLite.Fileset',
18     'WMCore.WMBS.SQLite.Locations',
19     'WMCore.WMBS.SQLite.Files',
20     'WMCore.WMBS.SQLite.Subscriptions',
21     'WMCore.WMBS.Actions',
22     'WMCore.WMBS.Actions.Fileset',
23     'WMCore.WMBS.Actions.Files',
24     'WMCore.WMBS.Actions.Subscriptions',
25     'WMCore.WMBS.WMBSAccountant',
26     'WMCore.WMBS.WMBSAllocater',
27     'WMCore.WMBS.WMBSAllocater.Allocaters',
28     'WMCore.WMBS.WMBSFeeder.Feeders',
29     'WMCore.WMBS.WMBSFeeder',
30     'WMCore.WMBS.MySQL',
31     'WMCore.WMBS.MySQL.Jobs',
32     'WMCore.WMBS.MySQL.Workflow',
33     'WMCore.WMBS.MySQL.Fileset',
34     'WMCore.WMBS.MySQL.Locations',
35     'WMCore.WMBS.MySQL.Files',
36     'WMCore.WMBS.MySQL.Subscriptions',
37     'WMCore.DataStructs',
38     'WMCore.WMBSFeeder.DBS',
39     'WMCore.WMBSFeeder.PhEDExNotifier',
40     'WMCore.WMBSFeeder.Fake',
41     'WMCore.WMBSFeeder',
42     'WMCore.Services.JSONParser',
43     'WMCore.Services.SiteDB',
44     'WMCore.Services',
45     'WMCore.Database'],)