Skip to content

Commit

Permalink
Renamed the files variables for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michelangelo DAgostino committed Jul 24, 2017
1 parent 00afc2b commit b10d9f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

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
authors = ''
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',
Expand Down

0 comments on commit b10d9f7

Please sign in to comment.