Initial checkin
[pwnitter] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..3ac03fa
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,18 @@
+from distutils.core import setup
+setup(name='pwnitter',
+       version='0.0.2',
+       author='Tobias Mueller',
+       author_email='tobiasmue@gnome.org',
+       license='GPLv3+',
+       description='Pwnitter hijacks Twitter accounts on the fly',
+       long_description='''Pwnitter listens on traffic and tries to extract authentication data from Cookies and uses that to post an own message to Twitter''',
+       #FIXME: That installs to /scratchbox/ for whatever reason scripts=['pwnitter.py', 'pwnitter-gtk'],
+       data_files = [ # FIXME: Probably abstract /usr/
+                    ('/usr/share/pixmaps',             ['pwnitter_icon_26x26.png']),
+                    ('/usr/share/applications/hildon', ['pwnitter.desktop']),
+                    ('/usr/share/dbus-1/system-services', ['de.cryptobitch.muelli.Pwnitter.service']),
+                    ('/etc/dbus-1/system.d', ['pwnitter-dbus.conf']),
+                    ('/usr/bin', ['pwnitter.py', 'pwnitter-gtk']),
+                    ]
+      )