~markjtully/askubuntu-lens/packaging

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Mark Tully
  • Date: 2012-07-04 23:20:18 UTC
  • Revision ID: markjtully@gmail.com-20120704232018-fzylppygcve5dj0x
Formatted python files to conform to PEP8 guidelines & fixed some issues found by pylint

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
 
#
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
"""
 
5
Setup file to build the Lens & Scopes
 
6
"""
 
7
 
3
8
from distutils.core import setup
4
9
from DistUtilsExtra.command import *
5
10
 
6
 
import glob
7
 
 
8
11
setup(name="unity-lens-help",
9
12
      version="1.5",
10
13
      author="Mark Tully",
12
15
      url="http://launchpad.net/askubuntu-lens/",
13
16
      license="GNU General Public License (GPL)",
14
17
      scripts=[
15
 
        'scopes/yelp/unity-lens-help-daemon', 
 
18
        'scopes/yelp/unity-lens-help-daemon',
16
19
        'scopes/askubuntu/unity-askubuntu-daemon',
17
20
        'scopes/manpages/unity-manpages-daemon',
18
21
        'scopes/sumo/unity-sumo-daemon',
40
43
                                            'icons/help-answer.svg',
41
44
                                            'icons/askubuntu-question-coloured.svg',
42
45
                                            'icons/askubuntu-unsolved-coloured.svg',
43
 
                                            'icons/askubuntu-answer-coloured.svg',]),
44
 
      ], 
45
 
      cmdclass={"build":  build_extra.build_extra, }
 
46
                                            'icons/askubuntu-answer-coloured.svg', ]),
 
47
      ],
 
48
      cmdclass={"build": build_extra.build_extra, }
46
49
)