forked from michaelliao/sinaweibopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create new README for pip and update version to 1.1.0
- Loading branch information
1 parent
d4b4573
commit 7726cf9
Showing
4 changed files
with
21 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Sina Weibo OAuth 2 API Python SDK | ||
|
||
This software is a 100% pure Python interface to Sina Weibo API which provides OAuth2.0 authentication and API calling wrapper. | ||
|
||
You can find docs and source code at: | ||
|
||
http://michaelliao.github.com/sinaweibopy/ | ||
|
||
Developed and mantained by Michael Liao. Please feel free to report bugs and your suggestions at: | ||
|
||
https://github.com/michaelliao/sinaweibopy | ||
|
||
For more information, please refer to the wiki: | ||
|
||
https://github.com/michaelliao/sinaweibopy/wiki/OAuth2-HOWTO |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
kw = dict( | ||
name = 'sinaweibopy', | ||
version = weibo.__version__, | ||
description = 'Sina Weibo OAuth2 API Python SDK', | ||
description = 'Sina Weibo OAuth 2 API Python SDK', | ||
long_description = open('README', 'r').read(), | ||
author = 'Michael Liao', | ||
author_email = '[email protected]', | ||
|
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,7 +1,7 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
__version__ = '1.0.9' | ||
__version__ = '1.1.0' | ||
__author__ = 'Liao Xuefeng ([email protected])' | ||
|
||
''' | ||
|