Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
setup.py 816 Bytes
Copy Edit Raw Blame History
from setuptools import setup
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
setup(
name="wechatpayv3",
version="1.2.34",
author="minibear",
description="微信支付 API v3 Python SDK(python sdk for wechatpay v3)",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="python sdk wechatpay api v3 微信支付",
url="https://github.com/minibear2021/wechatpayv3",
packages=["wechatpayv3"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Office/Business :: Financial",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
install_requires=["requests>=2.21.0", "cryptography>=35.0.0"],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化