From 895efcb29ac498338827738d15b902745f07c13b Mon Sep 17 00:00:00 2001 From: "Nathaniel J. Smith" Date: Tue, 10 Jul 2012 18:57:56 +0100 Subject: [PATCH] fix malformed ReST in setup.py --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0c3a3de..58f06f4 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,10 @@ DESC = """A Python package for describing statistical models and for building design matrices.""" -LONG_DESC = DESC + """ It is closely inspired by and compatible with the - 'formula' mini-language used in `R `_ and `S - `_.""" +LONG_DESC = (DESC + "\n" + "It is closely inspired by and compatible with the 'formula'\n" + "mini-language used in `R `_ and\n" + "`S `_.") # Compatibility code for handling both setuptools and distribute on Python 3, # as suggested here: http://packages.python.org/distribute/python3.html