#! /bin/sh /usr/share/dpatch/dpatch-run
## setup.py.dpatch by  <thomasbl@devel.thomasbl.de>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: setup.py for installing files the right way :)

@DPATCH@
diff -urNad SocksiPy-1.0~/setup.py SocksiPy-1.0/setup.py
--- SocksiPy-1.0~/setup.py	1970-01-01 01:00:00.000000000 +0100
+++ SocksiPy-1.0/setup.py	2008-10-14 00:30:56.000000000 +0200
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+
+setup(
+	name='python-socksipy',
+	py_modules=['socks'],
+	version='1.0',
+	description='This module was designed to allow developers of Python software that uses the Internet or another TCP/IP-based network to add support for connection through a SOCKS proxy server with as much ease as possible.',
+	author='Dan Haim',
+	author_email='negativeiq@users.sourceforge.net',
+	url='http://socksipy.sourceforge.net/'
+)
