~mhall119/onehundredscopes/unity-community-lens

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael Hall
  • Date: 2012-02-08 20:13:21 UTC
  • Revision ID: mhall119@ubuntu.com-20120208201321-eztpui4m20b14liz
Add copyright and setup files

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-community-lens',
 
7
    version='0.1',
 
8
    description='Ubuntu Community Lens',
 
9
    author='Michael Hall',
 
10
    author_email='mhall119@ubuntu.com',
 
11
    license='GPLv3',
 
12
    url='http://launchpad.net/singlet',
 
13
    #requires=['unity-singlet (>=0.2.1)'],
 
14
    data_files=[
 
15
        ('share/unity/lenses/community', ['community.lens']),
 
16
        ('share/dbus-1/services', ['unity-community-lens.service']),
 
17
        ('/opt/extras.ubuntu.com/unity-community-lens', ['community-lens']),
 
18
        ('/opt/extras.ubuntu.com/unity-community-lens', ['community.svg']),
 
19
    ],
 
20
    cmdclass={"build":  build_extra.build_extra, },
 
21
)