def text_from_file()

in setup.py [0:0]


def text_from_file(path):
    """Return text from file."""
    with open(path, encoding="utf-8") as f:
        return f.read()