We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa0e3a8 + 3ac6eec commit ebb6357Copy full SHA for ebb6357
setup.py
@@ -4,6 +4,7 @@
4
Copyright 2015-2017 HDE, Inc.
5
Licensed under MIT.
6
'''
7
+import io
8
import sys
9
from setuptools import setup, find_packages
10
from setuptools.command.test import test as TestCommand
@@ -27,7 +28,7 @@ def run_tests(self):
27
28
setup(name="python-lambda-local",
29
version=version,
30
description="Run lambda function in python on local machine.",
- long_description=open("README.rst").read(),
31
+ long_description=io.open("README.rst", encoding="utf-8").read(),
32
classifiers=[
33
'Development Status :: 3 - Alpha',
34
'Operating System :: POSIX',
0 commit comments