diff -Nur -x '*.orig' -x '*~' CouchDB-0.5/couchdb-dump CouchDB-0.5.new/couchdb-dump
--- CouchDB-0.5/couchdb-dump	1970-01-01 01:00:00.000000000 +0100
+++ CouchDB-0.5.new/couchdb-dump	2009-01-15 16:55:49.000000000 +0000
@@ -0,0 +1,5 @@
+#!/usr/bin/python
+
+from couchdb.tools import dump
+
+dump.main()
diff -Nur -x '*.orig' -x '*~' CouchDB-0.5/couchdb-load CouchDB-0.5.new/couchdb-load
--- CouchDB-0.5/couchdb-load	1970-01-01 01:00:00.000000000 +0100
+++ CouchDB-0.5.new/couchdb-load	2009-01-15 16:55:49.000000000 +0000
@@ -0,0 +1,5 @@
+#!/usr/bin/python
+
+from couchdb.tools import load
+
+load.main()
diff -Nur -x '*.orig' -x '*~' CouchDB-0.5/couchdb-replicate CouchDB-0.5.new/couchdb-replicate
--- CouchDB-0.5/couchdb-replicate	1970-01-01 01:00:00.000000000 +0100
+++ CouchDB-0.5.new/couchdb-replicate	2009-01-15 16:57:54.000000000 +0000
@@ -0,0 +1,5 @@
+#!/usr/bin/python
+
+from couchdb.tools import replication_helper
+
+replication_helper.main()
diff -Nur -x '*.orig' -x '*~' CouchDB-0.5/couchpy CouchDB-0.5.new/couchpy
--- CouchDB-0.5/couchpy	1970-01-01 01:00:00.000000000 +0100
+++ CouchDB-0.5.new/couchpy	2009-01-15 16:55:49.000000000 +0000
@@ -0,0 +1,5 @@
+#!/usr/bin/python
+
+from couchdb import view
+
+view.main()
diff -Nur -x '*.orig' -x '*~' CouchDB-0.5/setup.py CouchDB-0.5.new/setup.py
--- CouchDB-0.5/setup.py	2008-11-28 22:21:30.000000000 +0000
+++ CouchDB-0.5.new/setup.py	2009-01-15 16:58:00.000000000 +0000
@@ -128,14 +128,5 @@
 
     install_requires = ['httplib2'],
 
-    entry_points = {
-        'console_scripts': [
-            'couchpy = couchdb.view:main',
-            'couchdb-dump = couchdb.tools.dump:main',
-            'couchdb-load = couchdb.tools.load:main',
-            'couchdb-replicate = couchdb.tools.replication_helper:main'
-        ],
-    },
-
     cmdclass = {'build_doc': build_doc, 'test_doc': test_doc}
 )
