comparison buttercup/buttercup.py @ 18:151862a0a711

begin restructuring to something more modular and extensible
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 30 May 2011 13:40:13 -0700
parents
children a54543838686
comparison
equal deleted inserted replaced
17:8b4c21b853e9 18:151862a0a711
1 """
2 the flower blooming to k0s.org
3 """
4
5 class Buttercup(object):
6
7 # k0sware software
8 HG='http://k0s.org/hg'
9 PACKAGES=['bitsyapps',
10 'bitsyauth',
11 'bitsyblog',
12 'bitsytweet',
13 'buttercup',
14 'clwapp',
15 'commentator',
16 'contenttransformer',
17 'cropresize',
18 'decoupage',
19 'emaildispatcher',
20 'genshi_view',
21 'hgpaste',
22 'lxmlmiddleware',
23 'martINI',
24 'montage',
25 'pyloader',
26 'webob_view',
27 'wordstream']
28
29 def __init__(self):
30 sources = {'hg': ['%s/%s' % (self.HG, package)
31 for package in self.PACKAGES ]}
32 sources['git'] = ['git://github.com/mozilla/toolbox.git']
33