Skip to content

Commit 4629fd1

Browse files
committed
调整pypi发布包
1 parent ab6c71f commit 4629fd1

File tree

8 files changed

+16
-12
lines changed

8 files changed

+16
-12
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
config.py
22
*.pem
33
.vscode/
4-
__pycache__
4+
__pycache__
5+
build/
6+
dist/
7+
*.egg-info/
8+
publish.bat

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# wechatpay-api-v3
2-
[![PyPI version](https://badge.fury.io/py/wechatpay-api-v3.svg)](https://badge.fury.io/py/wechatpay-api-v3)
1+
# wechatpayv3
2+
[![PyPI version](https://badge.fury.io/py/wechatpayv3.svg)](https://badge.fury.io/py/wechatpayv3)
33

44
## 介绍
55

6-
**wechatpay-api-v3**
6+
**wechatpayv3**
77
微信支付接口V3版python库.
88

99
## 安装
1010

1111
```
12-
$ pip install wechatpay-api-v3
12+
$ pip install wechatpayv3
1313
```
1414

1515
## 使用方法
@@ -18,7 +18,7 @@ $ pip install wechatpay-api-v3
1818

1919
### 初始化
2020
``` python
21-
from wechatpay-api-v3 import WeChatPay, WeChatPayType
21+
from wechatpayv3 import WeChatPay, WeChatPayType
2222

2323
MCHID = '1230000109'
2424

examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from config import MCH_KEY_SERIAL_NO, MCHID, WECHAT_PUBLIC_KEY, MCH_PRIVATE_KEY, APPID, NOTIFY_URL
33

4-
from wechatpay import WeChatPay, WeChatPayException, WeChatPayType
4+
from wechatpayv3 import WeChatPay, WeChatPayType
55

66
wxpay = WeChatPay(wechatpay_type=WeChatPayType.MINIPROG,
77
mchid=MCHID,

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
long_description = f.read()
66

77
setup(
8-
name="wechatpay-api-v3",
9-
version="0.1",
8+
name="wechatpayv3",
9+
version="0.43",
1010
author="minibear",
11-
description="Python SDK for WechatPay V3",
11+
description="微信支付接口V3版python库",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
license="BSD",
1515
keywords="python sdk wechatpay api v3 微信支付",
16-
url="https://github.com/minibear2021/wechatpay-api-v3",
17-
packages=["wechatpay-api-v3"],
16+
url="https://github.com/minibear2021/wechatpayv3",
17+
packages=["wechatpayv3"],
1818
classifiers=[
1919
"Development Status :: 4 - Beta",
2020
"Topic :: Utilities",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)