commit | 0190660f79c4310987f405b3d8e5db4c5927665b | [log] [tgz] |
---|---|---|
author | Jon Wayne Parrott <jonwayne@google.com> | Wed Mar 22 10:10:32 2017 -0700 |
committer | Jon Wayne Parrott <jonwayne@google.com> | Wed Mar 22 10:10:32 2017 -0700 |
tree | 355de67d0b9844f2fdaf3c096f953536b2fc94aa | |
parent | c51d35a2d3cc5c158e51ee41726420a7e7e5d975 [diff] [blame] |
Use io.open instead of open in setup.py
diff --git a/setup.py b/setup.py index 389daff..8c51932 100644 --- a/setup.py +++ b/setup.py
@@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +import io + from setuptools import find_packages from setuptools import setup @@ -28,7 +30,7 @@ ) -with open('README.rst', 'r') as fh: +with io.open('README.rst', 'r') as fh: long_description = fh.read() setup(