Skip to content

Commit

Permalink
[2.0.0]release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-canux committed Mar 16, 2017
1 parent 2bee49a commit deacce6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 19 deletions.
9 changes: 1 addition & 8 deletions enterprise_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
django-wechat-api is wechat interface build with django.
enterprise-api is wechat enterprise account interface build with django.
Copyright (C) 2016 Canux CHENG.
All rights reserved.
Expand All @@ -11,11 +11,4 @@
Time: Mon 31 Oct 2016 10:38:57 PM EDT
DESCRIPTION:
How to install:
pip install django-wechat-api
How to use:
Follow django document, django-wechat-api is a django application.
"""

__version__ = "2.0.0"
__author__ = "Canux CHENG"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

from setuptools import setup, find_packages

import wechat_api
import wechat

NAME = 'django-wechat-api'
VERSION = wechat_api.__version__
VERSION = wechat.__version__
URL = 'https://github.com/crazy-canux/django-wechat-api'
DESCRIPTION = "Pure python/django for wechat official account interface."
KEYWORD = "python django wechat"
Expand Down Expand Up @@ -55,7 +55,7 @@ def read(readme):
license='GPL',
platforms='any',
install_requires=INSTALL_REQUIRES,
packages=find_packages(exclude=['wechat', 'vendor', 'static', 'templates']),
packages=find_packages(exclude=['wechat']),
zip_safe=False,
include_package_data=True,
classifiers=[
Expand Down
18 changes: 18 additions & 0 deletions wechat/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
__init__.py
Copyright (C) 2017 Canux CHENG.
All rights reserved.
LICENSE GNU General Public License v3.0.
:author: Canux CHENG canuxcheng@gmail.com
:version: V1.0.0.0
:since: Thu 16 Mar 2017 04:00:28 AM EDT
DESCRIPTION:
"""
__version__ = "2.0.0"
__author__ = "Canux CHENG"
9 changes: 1 addition & 8 deletions wechat_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
django-wechat-api is wechat interface build with django.
wechat_api is wechat subscribe and service account interface build with django.
Copyright (C) 2016 Canux CHENG.
All rights reserved.
Expand All @@ -11,11 +11,4 @@
Time: Mon 31 Oct 2016 10:38:57 PM EDT
DESCRIPTION:
How to install:
pip install django-wechat-api
How to use:
Follow django document, django-wechat-api is a django application.
"""

__version__ = "2.0.0"
__author__ = "Canux CHENG"

0 comments on commit deacce6

Please sign in to comment.