From cf7663889fd35ccf4d06a55efccaa5bc26a3fa8e Mon Sep 17 00:00:00 2001 From: Jonathan Tannehill Date: Mon, 27 Jun 2022 21:30:35 -0500 Subject: [PATCH] fixed setup.py for windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5354cd3..b31eef0 100644 --- a/setup.py +++ b/setup.py @@ -11,5 +11,5 @@ url='https://github.com/travishathaway/python-ach', license='MIT License', description='Library to create and parse ACH files (NACHA)', - long_description=open('README.rst').read(), + long_description=open('README.rst', encoding='utf-8').read(), )