convert from .txt to .rst

--HG--
rename : AUTHORS.txt => AUTHORS.rst
rename : CHANGES.txt => CHANGES.rst
rename : README.txt => README.rst
rename : TODO.txt => TODO.rst
This commit is contained in:
Carl Meyer 2010-01-28 16:03:55 -05:00
parent 23b9af9fc0
commit 731d417a41
7 changed files with 7 additions and 22 deletions

View file

@ -1,12 +0,0 @@
To install django-model-utils, run the following command inside this
directory:
python setup.py install
You can also just copy the included ``model_utils`` directory somewhere
on your Python path, or symlink to it from somewhere on your Python path, or
use ``easy_install`` or ``pip``.
This application requires Python 2.3 or later, and Django 1.0 or later.
You can obtain Python from http://www.python.org/ and Django from
http://www.djangoproject.com/.

View file

@ -1,8 +1,7 @@
include AUTHORS.txt
include CHANGES.txt
include INSTALL.txt
include AUTHORS.rst
include CHANGES.rst
include LICENSE.txt
include MANIFEST.in
include README.txt
include TODO.txt
include README.rst
include TODO.rst
include HGREV

View file

@ -1,5 +1,3 @@
.. comment: -*-restructuredtext-*-
==================
django-model-utils
==================

View file

View file

@ -20,9 +20,9 @@ try:
except IOError:
hgrev = ''
long_description = (open('README.txt').read() +
open('CHANGES.txt').read() +
open('TODO.txt').read())
long_description = (open('README.rst').read() +
open('CHANGES.rst').read() +
open('TODO.rst').read())
setup(
name='django-model-utils',