From d6495afc77ef51c5dec527f2c849cc6b1a5fb83c Mon Sep 17 00:00:00 2001 From: Ozgur As Date: Wed, 9 Aug 2023 13:30:19 +0300 Subject: [PATCH] fixes setup fail due to encoding declaration on windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5e8ab35..dc32743 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ name="django-openinghours", version=app.__version__, description=open('DESCRIPTION').read(), - long_description=open('README.rst').read(), + long_description=open('README.rst', 'r', encoding='utf-8').read(), license='The MIT License', platforms=['OS Independent'], keywords='django, app, openinghours, opening hours, opening times',