We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c10b325 commit b27af5aCopy full SHA for b27af5a
setup.py
@@ -1,6 +1,7 @@
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
+import codecs
5
import os
6
import unittest
7
@@ -10,7 +11,7 @@
10
11
with open(os.path.join(this_directory, 'requirements.txt')) as f:
12
install_requirements = f.read().splitlines()
13
this_directory = os.path.abspath(os.path.dirname(__file__))
-with open(os.path.join(this_directory, 'README.rst')) as f:
14
+with codecs.open(os.path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
15
long_description = f.read()
16
17
0 commit comments