Skip to content

Commit ae003f3

Browse files
committed
fix #28
1 parent cfc4c33 commit ae003f3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
#!/usr/bin/env python
2+
from io import open
3+
24
from setuptools import setup, find_packages
35

4-
with open("README.md", "r") as fh:
6+
with open("README.md", "r", encoding='utf-8') as fh:
57
long_description = fh.read()
68

79
with open('requirements.txt') as f:
810
requirements = [l for l in f.read().splitlines() if l]
911

1012
setup(name="python-weixin",
11-
version="0.4.0",
13+
version="0.4.1",
1214
description="Python Weixin API client support wechat-app",
1315
long_description=long_description,
1416
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)