~bernd-sch/onehundredscopes/sshsearch

4 by Bernd Schlapsi
renamed some files and created setup.py (not tested yet)
1
#!/usr/bin/env python
2
#
3
from distutils.core import setup
5 by Bernd Schlapsi
update setup.py
4
from DistUtilsExtra.command import *
4 by Bernd Schlapsi
renamed some files and created setup.py (not tested yet)
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']),
20 by Bernd Schlapsi
change file/folder structure and add MANIFEST.IN
16
        ('lib/unity-lens-sshsearch', ['src/unity-lens-sshsearch.py']),
17
        ('lib/unity-lens-sshsearch', ['data/unity-lens-sshsearch.svg']),
9 by Bernd Schlapsi
correct some error in setup.py
18
    ],
19
    cmdclass={"build": build_extra.build_extra, }
20
)
4 by Bernd Schlapsi
renamed some files and created setup.py (not tested yet)
21
8 by Bernd Schlapsi
correct some error in setup.py
22
#os.system('setsid unity')