-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97bded0
commit 5073dbb
Showing
4 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
Ace Kwok / @doraemonext | ||
@yxjsolid | ||
@zxygentoo | ||
@JohnnyZhao | ||
@svcvit | ||
@mtunique |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# -*- coding: utf-8 -*- | ||
#!/usr/bin/env python | ||
# !/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name = 'wechat-sdk', | ||
version = '0.5.1', | ||
keywords = ('wechat', 'sdk', 'wechat sdk'), | ||
description = u'微信公众平台Python开发包', | ||
long_description = open("README.rst").read(), | ||
license = 'BSD License', | ||
name='wechat-sdk', | ||
version='0.5.2', | ||
keywords=('wechat', 'sdk', 'wechat sdk'), | ||
description=u'微信公众平台Python开发包', | ||
long_description=open("README.rst").read(), | ||
license='BSD License', | ||
|
||
url = 'https://github.com/doraemonext/wechat-python-sdk', | ||
author = 'doraemonext', | ||
author_email = '[email protected]', | ||
url='https://github.com/doraemonext/wechat-python-sdk', | ||
author='doraemonext', | ||
author_email='[email protected]', | ||
|
||
packages = find_packages(), | ||
include_package_data = True, | ||
platforms = 'any', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
platforms='any', | ||
install_requires=open("requirements.txt").readlines(), | ||
) |