当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 1 Fork 123

RT.X / Django 微信小程序服务端 SDK
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
秦天琪 提交于 2019-12-30 10:03 . Update setup.py
import os
from setuptools import find_packages,setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__),os.pardir)))
setup(
name='django_miniprogram_api',
version='1.0.3.2',
packages=find_packages(),
include_package_data=True,
license='BSD License',
description='A simple Django app implemented the WeChat miniprogram\'s login, payment and other APIs',
long_description='https://github.com/TinchyChing/django_miniprogram_api',
long_description_content_type="text/markdown",
url='https://github.com/TinchyChing/django_miniprogram_api',
author='Tinchy',
author_email='tinchy@yeah.net',
install_requires = [
"requests",
"pycrypto",
"djangorestframework",
"xmltodict",
"djangorestframework-xml",
"Django"
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.1', # replace "X.Y" as appropriate
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
#'Programming Language :: Python',
#'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)
Python
1
https://gitee.com/rtx1996/django_miniprogram_api.git
git@gitee.com:rtx1996/django_miniprogram_api.git
rtx1996
django_miniprogram_api
Django 微信小程序服务端 SDK
master

搜索帮助