~ubuntu-branches/ubuntu/precise/gwibber/precise-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2009-02-20 14:45:57 UTC
  • Revision ID: james.westby@ubuntu.com-20090220144557-xmhe71jdn1mf7yo9
Tags: upstream-0.8
ImportĀ upstreamĀ versionĀ 0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# setup.py for gnuConcept
 
4
 
 
5
from distutils.core import setup
 
6
from DistUtilsExtra.command import *
 
7
from glob import glob
 
8
 
 
9
setup(name="gwibber",
 
10
      version="0.7",
 
11
      author="Ryan Paul",
 
12
      author_email="segphault@arstechnica.com",
 
13
      url="http://cixar.com/~segphault",
 
14
      license="GNU General Public License (GPL)",
 
15
      packages=['gwibber', 'gwibber.microblog', 'gwibber.microblog.support'],
 
16
      data_files=[
 
17
    ('share/gwibber/ui/', glob("ui/*.glade")),
 
18
    ('share/gwibber/ui/', glob("ui/*.png")),
 
19
    ('share/gwibber/ui/themes/default', glob("ui/themes/default/*")),
 
20
    ('share/gwibber/ui/themes/defaultsmall', glob("ui/themes/defaultsmall/*")),
 
21
    ('share/gwibber/ui/themes/funkatron', glob("ui/themes/funkatron/*")),
 
22
    ('share/gwibber/ui/themes/shine', glob("ui/themes/shine/*")),
 
23
    ('share/gwibber/ui', ['ui/progress.gif']),
 
24
    ('share/gwibber/ui', ['ui/gwibber.svg']),
 
25
    ('share/pixmaps', ['ui/gwibber.svg'])
 
26
    ],
 
27
      scripts=['bin/gwibber'],
 
28
      cmdclass = { "build" :  build_extra.build_extra,
 
29
                   "build_i18n" :  build_i18n.build_i18n,
 
30
                   "build_help" :  build_help.build_help,
 
31
                   "build_icons" :  build_icons.build_icons
 
32
                 }
 
33
)