Skip to content

Commit

Permalink
add docs to mainifest.in
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanMo committed Apr 9, 2016
1 parent 2622dc6 commit 646cc33
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include LICENSE
include README.rst
recursive-include wechat/templates *
recursive-include docs *
Binary file modified dist/django-wechat-0.3.tar.gz
Binary file not shown.
16 changes: 12 additions & 4 deletions django_wechat.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ License: BSD License
Description: 基于django的微信基础模块
========================

一个基于django的微信基础功能模块
.. image:: https://readthedocs.org/projects/django-wechat/badge/?version=latest
:target: http://django-wechat.readthedocs.org/zh_CN/latest/?badge=latest
:alt: Documentation Status

:Author:
Chen
一个基于django的微信基础功能模块

快速开始:
---------
Expand All @@ -23,6 +24,12 @@ Description: 基于django的微信基础模块

pip install xmltodict

安装wechat:

.. code-block::

pip install git+https://github.com/ChanMo/django_wechat.git

把wechat模块添加到你的settings.py里面:

.. code-block::
Expand All @@ -40,7 +47,7 @@ Description: 基于django的微信基础模块
# wechat config
WECHAT_APPID = 'test'
WECHAT_APPSECRET = 'test'
WECHAT_TOKEN = 'test'
WECHAT_TOKEN = 'yourtoken'
WECHAT_MCH_ID = 'test'
WECHAT_KEY = 'test'
WECHAT_JS_DEBUG = 'test'
Expand All @@ -61,6 +68,7 @@ Description: 基于django的微信基础模块
使用微信开发者模块:

接口地址为:http://yourdomain/wx/
token为: yourtoken


版本更改:
Expand Down
88 changes: 88 additions & 0 deletions django_wechat.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,94 @@ django_wechat.egg-info/PKG-INFO
django_wechat.egg-info/SOURCES.txt
django_wechat.egg-info/dependency_links.txt
django_wechat.egg-info/top_level.txt
docs/Makefile
docs/conf.py
docs/index.rst
docs/intro.rst
docs/make.bat
docs/start.rst
docs/_build/.doctrees/index.doctree
docs/_build/.doctrees/intro.doctree
docs/_build/.doctrees/start.doctree
docs/_build/doctrees/environment.pickle
docs/_build/doctrees/index.doctree
docs/_build/html/.buildinfo
docs/_build/html/genindex.html
docs/_build/html/index.html
docs/_build/html/objects.inv
docs/_build/html/search.html
docs/_build/html/searchindex.js
docs/_build/html/_sources/index.txt
docs/_build/html/_static/ajax-loader.gif
docs/_build/html/_static/alabaster.css
docs/_build/html/_static/basic.css
docs/_build/html/_static/comment-bright.png
docs/_build/html/_static/comment-close.png
docs/_build/html/_static/comment.png
docs/_build/html/_static/doctools.js
docs/_build/html/_static/down-pressed.png
docs/_build/html/_static/down.png
docs/_build/html/_static/file.png
docs/_build/html/_static/jquery-1.11.1.js
docs/_build/html/_static/jquery.js
docs/_build/html/_static/minus.png
docs/_build/html/_static/plus.png
docs/_build/html/_static/pygments.css
docs/_build/html/_static/searchtools.js
docs/_build/html/_static/underscore-1.3.1.js
docs/_build/html/_static/underscore.js
docs/_build/html/_static/up-pressed.png
docs/_build/html/_static/up.png
docs/_build/html/_static/websupport.js
docs/_build_html/.buildinfo
docs/_build_html/genindex.html
docs/_build_html/index.html
docs/_build_html/intro.html
docs/_build_html/objects.inv
docs/_build_html/search.html
docs/_build_html/searchindex.js
docs/_build_html/start.html
docs/_build_html/.doctrees/environment.pickle
docs/_build_html/.doctrees/index.doctree
docs/_build_html/.doctrees/intro.doctree
docs/_build_html/.doctrees/start.doctree
docs/_build_html/_sources/index.txt
docs/_build_html/_sources/intro.txt
docs/_build_html/_sources/start.txt
docs/_build_html/_static/ajax-loader.gif
docs/_build_html/_static/basic.css
docs/_build_html/_static/comment-bright.png
docs/_build_html/_static/comment-close.png
docs/_build_html/_static/comment.png
docs/_build_html/_static/doctools.js
docs/_build_html/_static/down-pressed.png
docs/_build_html/_static/down.png
docs/_build_html/_static/file.png
docs/_build_html/_static/jquery-1.11.1.js
docs/_build_html/_static/jquery.js
docs/_build_html/_static/minus.png
docs/_build_html/_static/plus.png
docs/_build_html/_static/pygments.css
docs/_build_html/_static/searchtools.js
docs/_build_html/_static/underscore-1.3.1.js
docs/_build_html/_static/underscore.js
docs/_build_html/_static/up-pressed.png
docs/_build_html/_static/up.png
docs/_build_html/_static/websupport.js
docs/_build_html/_static/css/badge_only.css
docs/_build_html/_static/css/theme.css
docs/_build_html/_static/fonts/Inconsolata-Bold.ttf
docs/_build_html/_static/fonts/Inconsolata-Regular.ttf
docs/_build_html/_static/fonts/Lato-Bold.ttf
docs/_build_html/_static/fonts/Lato-Regular.ttf
docs/_build_html/_static/fonts/RobotoSlab-Bold.ttf
docs/_build_html/_static/fonts/RobotoSlab-Regular.ttf
docs/_build_html/_static/fonts/fontawesome-webfont.eot
docs/_build_html/_static/fonts/fontawesome-webfont.svg
docs/_build_html/_static/fonts/fontawesome-webfont.ttf
docs/_build_html/_static/fonts/fontawesome-webfont.woff
docs/_build_html/_static/js/modernizr.min.js
docs/_build_html/_static/js/theme.js
wechat/__init__.py
wechat/admin.py
wechat/api.py
Expand Down

0 comments on commit 646cc33

Please sign in to comment.