Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Copyright 2015-2017 HDE, Inc.
Licensed under MIT.
'''
import io
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
Expand All @@ -27,7 +28,7 @@ def run_tests(self):
setup(name="python-lambda-local",
version=version,
description="Run lambda function in python on local machine.",
long_description=open("README.rst").read(),
long_description=io.open("README.rst", encoding="utf-8").read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: POSIX',
Expand Down