summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2010-06-22 19:46:25 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2010-06-22 19:46:25 +0200
commit20706f20512c143c3bcb1fbdcd729e57f4a3a82f (patch)
tree8d59f77ff924b5c0e645ca13f895735db62fcd22
parentea75ec929f07b320ebbed5ddd0605cd9b5122097 (diff)
downloadmarkupsafe-20706f20512c143c3bcb1fbdcd729e57f4a3a82f.tar.gz
Renamed readme
-rw-r--r--MANIFEST.in2
-rw-r--r--README.rst (renamed from README)0
-rw-r--r--setup.py4
3 files changed, 3 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index e659871..d50e4e0 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,2 @@
-include LICENSE README AUTHORS
+include LICENSE README.rst AUTHORS
recursive-include markupsafe *.c
diff --git a/README b/README.rst
index e6c9de0..e6c9de0 100644
--- a/README
+++ b/README.rst
diff --git a/setup.py b/setup.py
index 8bd8164..3bb9648 100644
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,7 @@ class ve_build_ext(build_ext):
raise BuildFailed()
-description = open(os.path.join(os.path.dirname(__file__), 'README')).read()
+readme = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
def run_setup(with_binary):
@@ -60,7 +60,7 @@ def run_setup(with_binary):
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
description='Implements a XML/HTML/XHTML Markup safe string for Python',
- long_description=description,
+ long_description=readme,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',