This change in how the variable is declared DESCRIPTION corrects problems

when running the command ``python setup.py bdist_rpm``
This commit is contained in:
Marcelo Anton 2012-10-18 11:44:18 -03:00
parent 31ec7907b5
commit 59826c8cfd

View File

@ -8,8 +8,8 @@ try:
except ImportError:
pass
DESCRIPTION = """MongoEngine is a Python Object-Document
Mapper for working with MongoDB."""
DESCRIPTION = 'MongoEngine is a Python Object-Document ' + \
'Mapper for working with MongoDB.'
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()