This repository has been archived by the owner on Apr 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
executable file
·37 lines (32 loc) · 1.51 KB
/
setup.py
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
37
#!/usr/bin/env python
from setuptools import setup
setup(name='screenkey', version='0.9',
description='A screencast tool to display keys',
author='Pablo Seminario',
author_email='[email protected]',
maintainer='Yuri D\'Elia',
maintainer_email='[email protected]',
license='GPLv3+',
keywords='screencast keyboard presentation keys',
url='http://www.thregr.org/~wavexx/software/screenkey/',
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: Education',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Multimedia :: Video :: Capture'],
long_description="""
Screenkey is a useful tool for presentations or screencasts.
Inspired by ScreenFlick and initially based on the key-mon project code.
""",
scripts=['screenkey'],
packages=['Screenkey'],
setup_requires=['setuptools', 'python-distutils-extra'],
install_requires=['PyGTK', 'pycairo'],
data_files=[('share/applications', ['data/screenkey.desktop']),
('share/doc/screenkey', ['README.rst', 'NEWS.rst'])],
)