Initial checkin
[pwnitter] / setup.py
1 from distutils.core import setup
2  
3 setup(name='pwnitter',
4        version='0.0.2',
5        author='Tobias Mueller',
6        author_email='tobiasmue@gnome.org',
7        license='GPLv3+',
8        description='Pwnitter hijacks Twitter accounts on the fly',
9        long_description='''Pwnitter listens on traffic and tries to extract authentication data from Cookies and uses that to post an own message to Twitter''',
10        #FIXME: That installs to /scratchbox/ for whatever reason scripts=['pwnitter.py', 'pwnitter-gtk'],
11        data_files = [ # FIXME: Probably abstract /usr/
12                     ('/usr/share/pixmaps',             ['pwnitter_icon_26x26.png']),
13                     ('/usr/share/applications/hildon', ['pwnitter.desktop']),
14                     ('/usr/share/dbus-1/system-services', ['de.cryptobitch.muelli.Pwnitter.service']),
15                     ('/etc/dbus-1/system.d', ['pwnitter-dbus.conf']),
16                     ('/usr/bin', ['pwnitter.py', 'pwnitter-gtk']),
17                     ]
18       )