~mk-fraggod/screenkey/screenkey

19 by Pablo Seminario
Disutils files added.
1
#!/usr/bin/env python
2
3
from distutils.core import setup
41.1.1 by Pablo Seminario
added suport for translations
4
try:
5
    from DistUtilsExtra.command import *
6
except ImportError:
7
    import sys
8
    print >> sys.stderr, 'To build Screenkey you need install python-distutils-extra\n' \
9
                         'https://launchpad.net/python-distutils-extra'
10
    sys.exit(1)
19 by Pablo Seminario
Disutils files added.
11
12
setup(
13
    name = 'screenkey',
38.1.1 by Pablo Seminario
Version number updated
14
    version = '0.2',
19 by Pablo Seminario
Disutils files added.
15
    packages = ['Screenkey'],
16
    package_dir = {'Screenkey': 'Screenkey'},
17
    data_files = [('/usr/share/applications', ['data/screenkey.desktop'])],
18
    scripts=['screenkey'],
19
    author='Pablo Seminario',
20
    author_email='pabluk@gmail.com',
21
    platforms=['POSIX'],
22
    license='GPLv3',
23
    keywords='screencast keyboard keys',
24
    url='http://launchpad.net/screenkey',
25
    download_url='http://launchpad.net/screenkey/+download',
26
    description='A screencast tool to display keys',
27
    long_description="""
28
    Screenkey is a useful tool for presentations or screencasts.
38.1.1 by Pablo Seminario
Version number updated
29
    Inspired by ScreenFlick and initially based on the key-mon project code.
19 by Pablo Seminario
Disutils files added.
30
    """,
41.1.1 by Pablo Seminario
added suport for translations
31
    cmdclass = {
32
        "build" : build_extra.build_extra,
33
        "build_i18n" : build_i18n.build_i18n,
34
    }
19 by Pablo Seminario
Disutils files added.
35
)