From 47f3e70015809fa829dce69709610d68ddb76017 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Wed, 11 May 2016 15:32:33 +0200 Subject: [PATCH] setup.py: really utf-8 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f0d657c79..1c109ac55 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3.5 -# -*- coding: utf-8 -*- from setuptools import setup, find_packages import sys @@ -53,7 +52,7 @@ setup( author_email="artiq@lists.m-labs.hk", url="https://m-labs.hk/artiq", description="Advanced Real-Time Infrastructure for Quantum physics", - long_description=open("README.rst").read(), + long_description=open("README.rst", encoding="utf-8").read(), license="GPLv3+", classifiers="""\ Development Status :: 5 - Production/Stable