From acbf5e07016ebe0346ba99315bc3e675c8030c48 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 29 Apr 2017 15:57:32 +0300 Subject: [PATCH] Fix mode for open at w32 --- project_template/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_template/setup.py b/project_template/setup.py index 94c8d95..b8c629f 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -18,7 +18,7 @@ from {project}_version import __version__ # noqa setup(name='{project}', version=__version__, description='Broytman {project}', - long_description=open('README.txt', 'rtU').read(), + long_description=open('README.txt', 'rU').read(), author='Oleg Broytman', author_email='phd@phdru.name', url='http://phdru.name/Software/Python/{project}', -- 2.39.2