From b10d9f77053f03575ac09f82976f3099ff7e856c Mon Sep 17 00:00:00 2001 From: Michelangelo DAgostino Date: Mon, 24 Jul 2017 15:33:23 -0500 Subject: [PATCH] Renamed the files variables for clarity. --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index addb7c3..21f1fbc 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ from setuptools import find_packages, setup -with open('README.rst') as f: - readme = f.read() +with open('README.rst') as r: + readme = r.read() with open('AUTHORS.txt') as a: # reSt-ify the authors list @@ -11,8 +11,8 @@ for author in a.read().split('\n'): authors += '| '+author+'\n' -with open('LICENSE.txt') as f: - license = f.read() +with open('LICENSE.txt') as l: + license = l.read() setup( name='jupyternotify',