setup.py (screenkey-1.4) | : | setup.py (screenkey-1.5) | ||
---|---|---|---|---|
#!/usr/bin/env python3 | #!/usr/bin/env python3 | |||
from setuptools import setup | from setuptools import setup | |||
from distutils.command.build import build | from distutils.command.build import build | |||
class BuildWithCompile(build): | class BuildWithCompile(build): | |||
sub_commands = [('compile_catalog', None)] + build.sub_commands | sub_commands = [('compile_catalog', None)] + build.sub_commands | |||
setup(name='screenkey', version='1.4', | setup(name='screenkey', version='1.5', | |||
description='A screencast tool to display keys', | description='A screencast tool to display keys', | |||
author='Pablo Seminario', | author='Pablo Seminario', | |||
author_email='pabluk@gmail.com', | author_email='pabluk@gmail.com', | |||
maintainer='Yuri D\'Elia', | maintainer='Yuri D\'Elia', | |||
maintainer_email='wavexx@thregr.org', | maintainer_email='wavexx@thregr.org', | |||
license='GPLv3+', | license='GPLv3+', | |||
keywords='screencast keyboard presentation keys', | keywords='screencast keyboard presentation keys', | |||
url='http://www.thregr.org/~wavexx/software/screenkey/', | url='http://www.thregr.org/~wavexx/software/screenkey/', | |||
skipping to change at line 38 | skipping to change at line 38 | |||
'Topic :: Multimedia :: Video :: Capture'], | 'Topic :: Multimedia :: Video :: Capture'], | |||
long_description=""" | long_description=""" | |||
Screenkey is a useful tool for presentations or screencasts. | Screenkey is a useful tool for presentations or screencasts. | |||
Inspired by ScreenFlick and initially based on the key-mon project code. | Inspired by ScreenFlick and initially based on the key-mon project code. | |||
""", | """, | |||
scripts=['screenkey'], | scripts=['screenkey'], | |||
packages=['Screenkey'], | packages=['Screenkey'], | |||
setup_requires=['setuptools', 'babel'], | setup_requires=['setuptools', 'babel'], | |||
install_requires=['PyGObject', 'pycairo'], | install_requires=['PyGObject', 'pycairo', 'dbus-python'], | |||
package_data={'': [ | package_data={'': [ | |||
'images/mouse.svg', | 'images/mouse.svg', | |||
'locale/*/LC_MESSAGES/screenkey.mo' | 'locale/*/LC_MESSAGES/screenkey.mo' | |||
]}, | ]}, | |||
data_files=[ | data_files=[ | |||
('share/applications', ['data/screenkey.desktop']), | ('share/applications', ['data/screenkey.desktop']), | |||
('share/doc/screenkey', ['README.rst', 'NEWS.rst']), | ('share/doc/screenkey', ['README.rst', 'NEWS.rst']), | |||
('share/metainfo', ['data/org.thregr.screenkey.metainfo.xml']) | ('share/metainfo', ['data/org.thregr.screenkey.metainfo.xml']) | |||
], | ], | |||
cmdclass={ | cmdclass={ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |