1 Star 0 Fork 0

liuzhijun / wxmp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 769 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuzhijun 提交于 2019-05-16 23:59 . init
# -*- encoding: UTF-8 -*-
from setuptools import setup, find_packages
import io
VERSION = '0.0.1'
with io.open("README.md", encoding='utf-8') as f:
long_description = f.read()
install_requires = open("requirements.txt").readlines()
setup(
name="wxmp", # pip 安装时用的名字
version=VERSION, # 当前版本,每次更新上传到pypi都需要修改
author="liuzhijun",
author_email="lzjun567@gmail.com",
url="https://github.com/lzjun567/wxmp",
keyworads="weixin",
description="微信公众号开发工具包",
long_description=long_description,
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
license='MIT License',
classifiers=[],
install_requires=install_requires,
)
1
https://gitee.com/liuzhijun1/wxmp.git
git@gitee.com:liuzhijun1/wxmp.git
liuzhijun1
wxmp
wxmp
master

搜索帮助