diff --git a/MySQLdb/MANIFEST.in b/MySQLdb/MANIFEST.in
index 91d8590..a3ff883 100644
--- a/MySQLdb/MANIFEST.in
+++ b/MySQLdb/MANIFEST.in
@@ -1,7 +1,5 @@
prune CVS
-recursive-include doc *.html *.sgml
-recursive-include examples *
-include README.MySQLmodule
+recursive-include doc *.txt *.html
include license.py
include MANIFEST.in
include MANIFEST
diff --git a/MySQLdb/doc/MySQLdb-FAQ.sgml b/MySQLdb/doc/MySQLdb-FAQ.sgml
deleted file mode 100644
index bfd0225..0000000
--- a/MySQLdb/doc/MySQLdb-FAQ.sgml
+++ /dev/null
@@ -1,135 +0,0 @@
-
-
-MySQLdb FAQ
-Andy Dustman
-$Id$
-Compiling Here are some common errors that happen during the build.
-This section covers UNIX/Linux problems only, as I don't do Windows.
-ImportError: libmysqlclient.so.6: cannot open shared object file:
-No such file or directory
-
-You have dynamic MySQL libraries, and by default, your compiler links
-
-
-
-Modify setup.py so that it links against the static library; see the comments.
-
-If your linker supports a run-time loader path switch, you can set this
-in setup.py as well.
-
-Change your system environment so that the MySQL libraries are on
-your loader path. With Linux, you can modify /etc/ld.so.conf (see
-
-LD_LIBRARY_PATH=/path/to/mysql/libs python ... # Bourne-ish shell
-
-
-ImportError: ./_mysql.so: undefined symbol: PyLong_FromUnsignedLongLong
-
-It seems that MySQL-3.23 client libraries require libz for gzip
-compression. setup.py should add this automatically.
-
-./_mysql.c:33: mysql.h: No such file or directory
-
The include path (-I) to your MySQL include files is wrong; modify
-setup.py. OR: You don't have the MySQL development stuff loaded. If you
-are using the Red Hat RPMs, you need the I'm using Windows...
-
Say no more.
-
I don't use Windows. setup.py is supposed to work for building.
-There may also be a link to some user-contributed binaries on the web site.
-
-
-Trouble with ZMySQLDA
-I installed MySQLdb but ZMySQLDA can't find it.
-
Probably you installed a binary version of Zope which comes with
-its own Python interpreter. You will have to compile MySQLdb against
-that particular Python installation. Find out where it's python binary
-lives and use that to run setup.py.
-
-I'm getting these stupid L's on my INTEGER columns.
-
Yup, they have to be converted to long integers to avoid overflows
-on UNSIGNED INT columns. Solutions: Use a
-I get SQL syntax errors on a LIMIT clause, and I didn't put in
-a LIMIT clause!
-
-
Z SQL Methods have a Using MySQLdb
-
-MySQLdb is a
- database module, so you
-should be familiar with the spec. Deviations from the spec are documented in the
-.
-
-cursor.rollback() always fails!
-
-
MySQLdb now supports transactions if the server supports
-transaction-safe tables (TSTs) and you are using them. If your server
-doesn't support them, rollbacks will always fail, as they should,
-because it can't do what you asked. Even if your server does support
-them, rollbacks will fail if you modified any non-TST tables.
-
-
OTOH, How do I use some of the special MySQL features?
-
-
First answer: Don't, if you can avoid it. Your program will not be
-portable to other databases.
-
-
Second answer: Nearly all the special API calls are implemented on
-the _mysql connection object, and the MySQLdb connection object can
-also invoke them. See the built-in module docs to find out what ones
-are implemented, and the MySQL C API docs to see what they do.
-
-I still wanna use _mysql directly.
-
-
Well, it
-
-Read the MySQL docs, particularly the C API, for an overview.
-
-Read the MySQLdb docs. This shows how the C API is transliterated
-into Python. Plus some examples are in there.
-
-Read the MySQLdb sources, particularly MySQLdb/cursors.py. That one
-file contains most of the gory details, particularly in the
-execute and _query methods.
-
-
diff --git a/MySQLdb/doc/MySQLdb.sgml b/MySQLdb/doc/MySQLdb.sgml
deleted file mode 100644
index 7cd2bd1..0000000
--- a/MySQLdb/doc/MySQLdb.sgml
+++ /dev/null
@@ -1,749 +0,0 @@
-
-
-MySQLdb: a Python interface for MySQL
-Andy Dustman
-$Id$
-
-MySQLdb is an thread-compatible interface to the popular
-MySQL database server that provides the Python database API.
-
-Introduction
-
-
This module should be with an older interface written by Joe Skinner and
-others. However, the older version is a) not thread-friendly (database
-operations could cause all other threads to block), b) written for
-MySQL 3.21 (does not compile against newer versions without patches),
-c) apparently not actively maintained. MySQLdb is a completely new
-module, distributed free of charge under the GNU Public License.
-
-
-Platforms
-
-Linux/UNIX
-
-This module is developed on RedHat Linux (currently 7.1) for Intel. It
-should build without much trouble on most platforms by using the
-.
-
-Windows (3.11, 95, 98, NT, 2000, CE, BSOD, XYZ, etc.)
-
-Windows is Python
-
-MySQLdb requires Python 1.5.2 or newer. Earlier versions will not
-work, because support for C MySQL
-
-MySQL-3.22
-
-Only versions 3.22.32 and up are guaranteed to work. Some older
-versions may work; if you have an older version you should seriously
-consider upgrading to get the bug fixes and particularly the security
-updates.
-
-MySQL-3.22 seems to have a problem trying to insert MySQL-3.23
-
-MySQL-3.23 is now stable (3.23.51 as of this writing). MySQLdb
-supports transactions if the MySQL-4.0
-
-MySQL-4.0 is supported, though still alpha.
-
-
-DateTime
-
If you have the package installed (recommended), MySQLdb will use
-it for date-related objects. Otherwise, these will be returned to
-Python as strings. You can also modify the type conversion
-dictionary to return these as other object classes, if you prefer.
-
-MySQLmodule