/usr/lib/python2.7/dist-packages/pymecavideo/setup.py is in python-mecavideo 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # -*- coding: utf-8 -*-
### setup.py ###
from distutils.core import setup
# import py2exe
setup(name='pymecavideo',
version='6.0b1',
description=u"pymecavideo permet de tracer des trajectoires issues de videos et d'en exporter les resultats",
author='Jean-Baptiste BUTET, Georges KHAZNADAR',
author_email='ashashiwa@gmail.com, georgesk@ofset.org',
url='http://outilsphysiques.tuxfamily.org/pmwiki.php/Oppl/Pymecavideo',
license='GPLv3',
packages=['pymecavideo'],
package_dir={'pymecavideo': 'src'},
package_data={
'pymecavideo/data/': ['../data/icones/*', '../data/video/*.avi', '../data/lang/*.ts', '../data/lang/*.qm']}
#, 'data/help/*']},
#data_files=[('share/pymecavideo', ['test.html'])]
)
#setup(console=['src/pymecavideo.py'])
|