view 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
line wrap: on
line source

"""
the flower blooming to k0s.org
"""

class Buttercup(object):

    # k0sware software
    HG='http://k0s.org/hg'
    PACKAGES=['bitsyapps',
              'bitsyauth',
              'bitsyblog',
              'bitsytweet',
              'buttercup',
              'clwapp',
              'commentator',
              'contenttransformer',
              'cropresize',
              'decoupage',
              'emaildispatcher',
              'genshi_view',
              'hgpaste',
              'lxmlmiddleware',
              'martINI',
              'montage',
              'pyloader',
              'webob_view',
              'wordstream']

    def __init__(self):
        sources = {'hg': ['%s/%s' % (self.HG, package)
                          for package in self.PACKAGES ]}
        sources['git'] = ['git://github.com/mozilla/toolbox.git']