From c921fa931f8f33345d952365044d53971d271f0b Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 18 Sep 2018 23:40:25 +0200 Subject: [PATCH] cosmetic changes to setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bf9da86..bc2da6c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,8 @@ from xstatic.pkg import jquery as xs # The README.txt file should be written in reST so that PyPI can use # it to generate your project's PyPI page. -long_description = open('README.txt').read() +with open('README.txt') as f: + long_description = f.read() from setuptools import setup, find_packages