Add more docstrings and fix lint errors

This commit is contained in:
Ian Cordasco 2016-01-10 14:47:06 -06:00
parent 5903576732
commit 8c872c4bb9
9 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,4 @@
"""Packaging logic for Flake8."""
# -*- coding: utf-8 -*-
from __future__ import with_statement
import setuptools
@ -25,6 +26,7 @@ if mock is None:
def get_long_description():
"""Generate a long description from the README and CHANGES files."""
descr = []
for fname in ('README.rst', 'CHANGES.rst'):
with open(fname) as f: