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.
1 parent cfc4c33 commit ae003f3Copy full SHA for ae003f3
setup.py
@@ -1,14 +1,16 @@
1
#!/usr/bin/env python
2
+from io import open
3
+
4
from setuptools import setup, find_packages
5
-with open("README.md", "r") as fh:
6
+with open("README.md", "r", encoding='utf-8') as fh:
7
long_description = fh.read()
8
9
with open('requirements.txt') as f:
10
requirements = [l for l in f.read().splitlines() if l]
11
12
setup(name="python-weixin",
- version="0.4.0",
13
+ version="0.4.1",
14
description="Python Weixin API client support wechat-app",
15
long_description=long_description,
16
long_description_content_type="text/markdown",
0 commit comments