~bernd-sch/onehundredscopes/sshsearch

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bernd Schlapsi
  • Date: 2011-12-30 19:23:16 UTC
  • Revision ID: brot@gmx.info-20111230192316-qoyspkdft8qtrk2w
renamed some files and created setup.py (not tested yet)

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
 
import os
6
 
 
7
 
setup(name="unity-lens-sshsearch",
8
 
    version="0.1",
9
 
    author="Bernd Schlapsi",
10
 
    author_email="brot@gmx.info",
11
 
    url="https://launchpad.net/unity-sshsearch-lens",
12
 
    license="GNU General Public License (GPL) v3",
13
 
    data_files=[
14
 
        ('share/unity/lenses/sshsearch', ['sshsearch.lens']),
15
 
        ('share/dbus-1/services', ['unity-lens-sshsearch.service']),
16
 
        ('lib/unity-lens-sshsearch', ['unity-lens-sshsearch.py']),
17
 
        ('lib/unity-lens-sshsearch', ['unity-lens-sshsearch.png']),
18
 
    ],
19
 
    cmdclass={"build": build_extra.build_extra, }
20
 
)
21
 
 
22
 
#os.system('setsid unity')