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