File: setup.py

package info (click to toggle)
pygmy 0.48-3
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 292 kB
  • ctags: 198
  • sloc: python: 1,507; makefile: 34
file content (30 lines) | stat: -rw-r--r-- 1,125 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

from distutils.core import setup

setup(name='Pygmy',
        version='0.48',
        description='GTK+ client for the Music Player Daemon (MPD).',
        author='Andrew Conkling',
        author_email='andrewski@fr.st',
        url='http://pygmy.berlios.de',
        classifiers=[
            'Development Status :: 4 - Beta',
            'Environment :: X11 Applications',
            'Intended Audience :: End Users/Desktop',
            'License :: GNU General Public License (GPL)',
            'Operating System :: Linux',
            'Programming Language :: Python',
            'Topic :: Multimedia :: Sound :: Players',
            ],
        py_modules = ['pygmy'],
        scripts = ['pygmy', 'bantu'],
        data_files=[('share/pygmy',
                        ['pygmy.glade']),
                    ('share/man/man1',
                        ['pygmy.1']),
                    ('share/applications',
                        ['pygmy.desktop']),
                    ('share/pixmaps',
                        ['pygmy.svg', 'pygmy.png', 'pygmyplaylist.svg', 'pygmyplaylist.png'])],
        )