diff --git a/CHANGES.txt b/CHANGES.txt index 74f5795..5ad5587 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -17,3 +17,7 @@ Version 1.0.8 released 2012-12-02 Version 1.0.9 released 2012-12-14 * Add in-site app support. + +Version 1.1.0 released 2013-02-05 + +* Update docs. diff --git a/README b/README new file mode 100644 index 0000000..3c476fd --- /dev/null +++ b/README @@ -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 diff --git a/setup.py b/setup.py index 1046a0d..86bf3ff 100644 --- a/setup.py +++ b/setup.py @@ -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 = 'askxuefeng@gmail.com', diff --git a/weibo.py b/weibo.py index ccab475..e215d3c 100644 --- a/weibo.py +++ b/weibo.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = '1.0.9' +__version__ = '1.1.0' __author__ = 'Liao Xuefeng (askxuefeng@gmail.com)' '''