diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2017-02-20 18:22:38 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2017-02-20 18:22:38 +0000 |
commit | 24e74cfb2924c63f0c6b8b39471a7d7fd65bbfdc (patch) | |
tree | 79c6accaf48d5b37de06b785a4cc03bbeea913c4 /setup.py | |
parent | 9b861dfb494c4077688b9968868fc80836cdda28 (diff) | |
download | logutils-git-24e74cfb2924c63f0c6b8b39471a7d7fd65bbfdc.tar.gz |
Updated README format.0.3.4
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,10 +7,10 @@ import re def description(): - f = open(join(dirname(__file__), 'README.txt')) + f = open(join(dirname(__file__), 'README.rst')) readme = f.read() f.close() - regexp = r'^logutils\s*[\d.]*\s*\n=======+\s*\n(.*)Requirements ' + regexp = r'logutils\s*[\d.]*\s*\n=======+\s*\n(.*)Requirements ' reqts, = re.findall(regexp, readme, re.DOTALL) regexp = r'Availability & Documentation\s*\n-----+\s*\n(.*)' avail, = re.findall(regexp, readme, re.DOTALL) |