Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/skel/setup.py
blob: a8896a2648174d6469b03f115473872d6f6717f8 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python

if __name__ == "__main__":
    from sugar.activity import bundlebuilder
    from sugar.bundle.activitybundle import ActivityBundle
    b = ActivityBundle('.')
    __, name = b.get_bundle_id().rsplit('.',1)
    bundlebuilder.start(name)