Skip to content

Commit

Permalink
fix #28
Browse files Browse the repository at this point in the history
  • Loading branch information
gusibi committed Aug 29, 2018
1 parent cfc4c33 commit ae003f3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
#!/usr/bin/env python
from io import open

from setuptools import setup, find_packages

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

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

setup(name="python-weixin",
version="0.4.0",
version="0.4.1",
description="Python Weixin API client support wechat-app",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit ae003f3

Please sign in to comment.