~renatofilho/unity-lens-video/unity-lens-videos-dconf

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

setup(name="unity-lens-video",
      version="0.3.4",
      author="David Calle",
      author_email="davidc@framli.eu",
      url="http://launchpad.net/~davidc3",
      license="GNU General Public License (GPL)",
      data_files=[
    ('lib/unity-lens-video', ['src/unity-lens-video']),
    ('share/dbus-1/services', ['unity-lens-video.service']),
    ('share/glib-2.0/schemas', ['com.canonical.Unity.VideosLens.gschema.xml']),
    ], cmdclass={"build":  build_extra.build_extra,
                 "build_i18n": build_i18n.build_i18n,})