Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 05f6be91374c5efa0e912bed1e2a52c3c69f66b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python
from DistUtilsExtra.command import * # gettext support
from distutils.core import setup

setup(name='sugar-update-control',
      version="0.27",
      description='Sugar update control panel',
      author='C. Scott Ananian',
      author_email='cscott@laptop.org',
      url='http://dev.laptop.org/git/users/cscott/sugar-update-control',
      data_files=[('share/sugar/extensions/cpsection/updater',
                   ['src/__init__.py', 'src/model.py', 'src/view.py']),
                  ],
      cmdclass = { "build" : build_extra.build_extra,
                   "build_i18n" :  build_i18n.build_i18n },
      )