Skip to content
Snippets Groups Projects
Commit 17d0acb2 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[setup] Enforce opening README.rst in utf-8

parent 8f27e623
No related branches found
No related tags found
2 merge requests!2551.4.x,!250Refactor buildout
Pipeline #23421 passed
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
############################################################################### ###############################################################################
from setuptools import setup, find_packages from setuptools import setup, find_packages
from io import open
# The only thing we do in this file is to call the setup() function with all # The only thing we do in this file is to call the setup() function with all
# parameters that define our package. # parameters that define our package.
...@@ -38,7 +39,7 @@ setup( ...@@ -38,7 +39,7 @@ setup(
license='AGPLv3', license='AGPLv3',
author='Idiap Research Institute', author='Idiap Research Institute',
author_email='beat.support@idiap.ch', author_email='beat.support@idiap.ch',
long_description=open('README.rst').read(), long_description=open('README.rst', encoding="utf-8").read(),
# This line is required for any distutils based packaging. # This line is required for any distutils based packaging.
packages=find_packages(), packages=find_packages(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment