Skip to content

Commit 6fab6c0

Browse files
committed
添加说明
1 parent c603368 commit 6fab6c0

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD License
22

3-
For python-instagram software
3+
For python-weixin software
44

55
Copyright (c) 2014, Facebook, Inc. All rights reserved.
66

@@ -12,4 +12,4 @@ Redistributions in binary form must reproduce the above copyright notice, this l
1212

1313
Neither the name Facebook nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1414

15-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
from setuptools import setup, find_packages
33

44
setup(name="python-weixin",
5-
version="0.1.1",
6-
description="Weixin API client",
5+
version="0.1.2",
6+
description="Python Weixin API client",
77
license="BSD",
8-
install_requires=["simplejson","requests","six", "chardet"],
8+
install_requires=["simplejson", "requests", "six", "chardet"],
99
author="Zongxiao Cheng",
1010
author_email="[email protected]",
1111
url="https://github.com/zongxiao/python-weixin",
12-
packages = find_packages(),
13-
keywords= "weixin wechat",
14-
zip_safe = True)
12+
download_url="https://github.com/zongxiao/python-weixin/archive/master.zip",
13+
packages=find_packages(),
14+
keywords=["python-weixin", "weixin", "wechat", "sdk"],
15+
zip_safe=True)

0 commit comments

Comments
 (0)