~sabik/connectr/main

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python

from distutils.core import setup

setup(name='connectr',
      version='0.0.20091115',
      description='social network over telepathy tubes',
      author='Jiri Baum',
      author_email='sabik@baum.com.au',
      packages=['Connectr'],
      scripts=['connectr'],
      data_files=[
        ('/usr/share/applications', ['misc/connectr.desktop']),
        ('/usr/share/icons/hicolor/48x48/apps/', ['misc/connectr.png']),
        ('/usr/share/icons/hicolor/scalable/apps/', ['misc/connectr.svg']),
      ]
     )