bump version and add a comment

This commit is contained in:
Sergey Obukhov
2016-08-11 15:49:09 -07:00
parent 21e9a31ffe
commit a0d7236d0b
2 changed files with 3 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ class InstallCommand(install):
setup(name='talon',
version='1.2.12',
version='1.2.14',
description=("Mailgun library "
"to extract message quotations and signatures."),
long_description=open("README.rst").read(),

View File

@@ -164,6 +164,8 @@ RE_PARENTHESIS_LINK = re.compile("\(https?://")
SPLITTER_MAX_LINES = 4
MAX_LINES_COUNT = 1000
# an extensive research shows that exceeding this limit
# leads to excessive processing time
MAX_HTML_LEN = 2794202
QUOT_PATTERN = re.compile('^>+ ?')