~unity-lens-videos/unity-lens-video/remote-videos

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Callé
  • Date: 2012-01-30 09:24:47 UTC
  • Revision ID: davidc@framli.eu-20120130092447-ojcccg0q6640r15x
* Copy video-local branch
* Setup the scope architecture
* Pass to second category for testing

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
from distutils.core import setup
 
4
from DistUtilsExtra.command import *
 
5
 
 
6
setup(name="unity-scope-video-remote",
 
7
      version="0.1",
 
8
      author="David Calle",
 
9
      author_email="davidc@framli.eu",
 
10
      url="http://launchpad.net/onehundredscopes",
 
11
      license="GNU General Public License (GPL)",
 
12
      data_files=[
 
13
    ('lib/unity-scope-video-remote', ['src/unity-scope-video-remote']),
 
14
    ('share/dbus-1/services', ['unity-scope-video-remote.service']),
 
15
    ('share/unity/lenses/video', ['video-remote.scope']),
 
16
    ], cmdclass={"build":  build_extra.build_extra, })