~sil2100/unity-lens-video/remote-videos-scope-precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
#
from distutils.core import setup
from DistUtilsExtra.command import *

setup(name="unity-scope-video-remote",
      version="0.1",
      author="David Calle",
      author_email="davidc@framli.eu",
      url="http://launchpad.net/onehundredscopes",
      license="GNU General Public License (GPL)",
      data_files=[
    ('lib/unity-scope-video-remote', ['src/unity-scope-video-remote']),
    ('share/dbus-1/services', ['unity-scope-video-remote.service']),
    ('share/unity/lenses/video', ['video-remote.scope']),
    ], cmdclass={"build":  build_extra.build_extra, })