We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 274456a + 962d2dd commit df8954bCopy full SHA for df8954b
1 file changed
setup.py
@@ -1,4 +1,5 @@
1
from setuptools import setup, find_packages, os
2
+from io import open
3
4
# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
5
# in multiprocessing/util.py _exit_function when running `python
@@ -21,7 +22,7 @@
21
22
author_email='24erre@gmail.com, giorgio.salluzzo@gmail.com',
23
url='https://github.com/mocketize/python-mocket',
24
description='Socket Mock Framework',
- long_description=open('README.rst').read(),
25
+ long_description=open('README.rst', encoding='utf-8').read(),
26
packages=find_packages(exclude=('tests', )),
27
install_requires=install_requires,
28
extras_require={
0 commit comments