Skip to content

Commit ebb6357

Browse files
authored
Merge pull request #37 from yxd-hde/i-36
Setup encoding.
2 parents fa0e3a8 + 3ac6eec commit ebb6357

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Copyright 2015-2017 HDE, Inc.
55
Licensed under MIT.
66
'''
7+
import io
78
import sys
89
from setuptools import setup, find_packages
910
from setuptools.command.test import test as TestCommand
@@ -27,7 +28,7 @@ def run_tests(self):
2728
setup(name="python-lambda-local",
2829
version=version,
2930
description="Run lambda function in python on local machine.",
30-
long_description=open("README.rst").read(),
31+
long_description=io.open("README.rst", encoding="utf-8").read(),
3132
classifiers=[
3233
'Development Status :: 3 - Alpha',
3334
'Operating System :: POSIX',

0 commit comments

Comments
 (0)