summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2019-02-21 10:36:23 +0100
committerjvoisin2019-02-21 10:36:23 +0100
commitdda30c48b7a6f04ed7d508816ce72a1c75badbb2 (patch)
tree673a44752ae0caa18852da3d9b68e4cc932436db
parent8542e650eccbc2c2349377897a4eacd3e0e72e1a (diff)
Fix the setup.py on Debian
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 0a29d70..8934ce2 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
1import setuptools 1import setuptools
2 2
3with open("README.md", "r") as fh: 3with open("README.md", encoding='utf-8') as fh:
4 long_description = fh.read() 4 long_description = fh.read()
5 5
6setuptools.setup( 6setuptools.setup(