File: setup.py

package info (click to toggle)
xmms2tray 0.4-1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 216 kB
  • ctags: 41
  • sloc: python: 331; xml: 70; makefile: 53
file content (36 lines) | stat: -rw-r--r-- 1,355 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python

from distutils.core import setup

setup(name='xmms2tray',
      version='0.4',
      description='tray icon for XMMS2',
      author='Thomas Jollans',
      author_email='thomas@jollans.com',
      url='http://zombiehq.xyzplanet.net/zhq/projects/xmms2tray',

      requires=['xmmsclient', 'gtk (>=2.10.0)'],

      packages=['xmms2tray'],
      package_dir={'xmms2tray': 'src/xmms2tray'},
      data_files=[('share/doc/xmms2tray', ['README', 'COPYING', 'ChangeLog']),
                  ('share/xmms2tray/data', ['data/xmms2_simple.png',
                                            'data/xmms2_glossy.png',
                                            'data/xmms2_glossy_24.png',
                                            'data/xmms2_simple_64.png',
                                            'data/xmms2_64.png',
                                            'data/xmms2_24.png'])],
      scripts=['xmms2tray'],

      classifiers=[
          'Development Status :: 4 - Beta',
          'Environment :: X11 Applications :: GTK',
          'License :: DFSG approved',
          'License :: OSI Approved :: GNU General Public License (GPL)',
          'Natural Language :: English',
          'Operating System :: POSIX',
          'Programming Language :: Python',
          'Topic :: Multimedia :: Sound/Audio'
          ]
      )