Added StartFromFile to DBus Interface to call Pwnitter with a PCap file
[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        scripts=['pwnitter.py', 'pwnitter-gtk'],
11        data_files = [
12                     ('./share/pixmaps',             ['pwnitter_icon_26x26.png']),
13                     ('./share/applications/hildon', ['pwnitter.desktop']),
14                     ('./share/dbus-1/system-services', ['de.cryptobitch.muelli.Pwnitter.service']),
15                     ('/etc/dbus-1/system.d', ['pwnitter-dbus.conf']),
16                     ]
17       )