1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python3
#
from distutils.core import setup
from DistUtilsExtra.command import build_extra
setup(name="unity-scope-mythtv",
version="0.2.0",
author="Thomas Mashos",
author_email="thomas@mashos.com",
url="http://launchpad.net/mythbuntu",
license="GNU General Public License (GPL)",
data_files=[
('lib/unity-scope-mythtv', ['src/unity-scope-mythtv']),
('lib/unity-scope-mythtv', ['src/search.py']),
('share/dbus-1/services', ['unity-scope-mythtv.service']),
('share/unity/lenses/video', ['mythtv.scope']),
], cmdclass={"build": build_extra.build_extra, })
|