cosmetic changes to setup.py

This commit is contained in:
Thomas Waldmann 2018-09-18 23:40:25 +02:00
parent 4c0a73b320
commit c921fa931f
1 changed files with 2 additions and 1 deletions

View File

@ -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