~myfreeweb/proeggtimer/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
#
# setup.py for gnuConcept

from distutils.core import setup
from DistUtilsExtra.command import *
from glob import glob

setup(name="proeggtimer",
      version="0.5",
      author="MyFreeWeb",
      author_email="me@myfreeweb.ru",
      url="http://launchpad.net/proeggtimer",
      license="Creative Commons - Attribution",
      packages=['eggtimer'],
      data_files=[
          ('share/proeggtimer/presets/', glob("presets/*.xml")),
          ('share/pixmaps', ['eggtimer.svg']),
          ('share/pixmaps', glob("*.png")),
          ],
      scripts=['proeggtimer.py'],
      cmdclass = { "build" :  build_extra.build_extra,
                   "build_i18n" :  build_i18n.build_i18n,
                   "build_icons" :  build_icons.build_icons
                 }
)