diff --git a/README_development.html b/README_development.html
deleted file mode 100644
index 2c4d922..0000000
--- a/README_development.html
+++ /dev/null
@@ -1,366 +0,0 @@
-
-
-
-
-
-
-JayDeBeApi - Development notes
-
-
-
-
-
JayDeBeApi - Development notes
-
-
Some notes for development.
-
-
-
-
-Sync the branch.
-
-$ bzr pull
-
-
-Do your changes.
-
-Add a changelog entry to README.rst.
-
-Increase version in setup.py.
-
-Run setuptools to ensure everything is working as expected.
-
-$ python setup.py sdist
-
-
-Commit your changes.
-
-$ bzr ci -m "my comment"
-
-
-Tag for the new version.
-
-$ bzr tag jaydebeapi-0.1.2
-
-
-Send changes to launchpad.
-
-$ bzr push
-
-
-Publish new release on PyPi.
-
-$ python setup.py sdist --formats=gztar upload
-
-
-
-
-
-
-
diff --git a/README_development.rst b/README_development.rst
new file mode 100644
index 0000000..39cdf23
--- /dev/null
+++ b/README_development.rst
@@ -0,0 +1,40 @@
+================================
+ JayDeBeApi - Development notes
+================================
+
+Some notes for development.
+
+.. contents::
+
+Build a new release
+===================
+
+1. Sync the branch. ::
+
+ $ bzr pull
+
+2. Do your changes.
+
+3. Add a changelog entry to ``README.rst``.
+
+4. Increase version in ``setup.py``.
+
+5. Run setuptools to ensure everything is working as expected. ::
+
+ $ python setup.py sdist
+
+6. Commit your changes. ::
+
+ $ bzr ci -m "my comment"
+
+7. Tag for the new version. ::
+
+ $ bzr tag jaydebeapi-0.1.2
+
+8. Send changes to launchpad. ::
+
+ $ bzr push
+
+9. Publish new release on PyPi. ::
+
+ $ python setup.py sdist --formats=gztar upload