-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathsetup.py
25 lines (22 loc) · 816 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
setup(
name="wechatpayv3",
version="1.3.10",
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"],
)