mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-05-22 16:45:49 +00:00
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:
parent
23b9af9fc0
commit
731d417a41
7 changed files with 7 additions and 22 deletions
12
INSTALL.txt
12
INSTALL.txt
|
|
@ -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/.
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
include AUTHORS.txt
|
include AUTHORS.rst
|
||||||
include CHANGES.txt
|
include CHANGES.rst
|
||||||
include INSTALL.txt
|
|
||||||
include LICENSE.txt
|
include LICENSE.txt
|
||||||
include MANIFEST.in
|
include MANIFEST.in
|
||||||
include README.txt
|
include README.rst
|
||||||
include TODO.txt
|
include TODO.rst
|
||||||
include HGREV
|
include HGREV
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
.. comment: -*-restructuredtext-*-
|
|
||||||
|
|
||||||
==================
|
==================
|
||||||
django-model-utils
|
django-model-utils
|
||||||
==================
|
==================
|
||||||
6
setup.py
6
setup.py
|
|
@ -20,9 +20,9 @@ try:
|
||||||
except IOError:
|
except IOError:
|
||||||
hgrev = ''
|
hgrev = ''
|
||||||
|
|
||||||
long_description = (open('README.txt').read() +
|
long_description = (open('README.rst').read() +
|
||||||
open('CHANGES.txt').read() +
|
open('CHANGES.rst').read() +
|
||||||
open('TODO.txt').read())
|
open('TODO.rst').read())
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django-model-utils',
|
name='django-model-utils',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue