Skip to content

Commit 10ecb45

Browse files
author
Antonio Buedo
committed
- Package update
1 parent acc34ab commit 10ecb45

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,21 @@
66
setuptools.setup(
77
name="bitpay",
88
package_dir={"": "src"},
9-
packages=setuptools.find_packages(where="src"),
10-
version="1.0.2201",
9+
packages=["bitpay"],
10+
version="3.1.2203",
1111
description="Accept bitcoin with BitPay",
1212
author="Antonio Buedo",
1313
author_email="[email protected]",
1414
url="https://github.com/bitpay/python-bitpay-client",
15-
download_url="",
15+
download_url="https://github.com/bitpay/python-bitpay-client/tarball/v3.1.2203",
1616
keywords=["bitcoin", "payments", "crypto", "cash", "ethereum", "online payments"],
1717
python_requires=">=3.7",
1818
install_requires=["requests", "ecdsa"],
1919
classifiers=[
20-
"Programming Language :: Python :: 3.7, 3.8, 3.9, 3.10",
20+
"Programming Language :: Python :: 3.7",
21+
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
2124
"Development Status :: 5 - Production/Stable",
2225
"Intended Audience :: Developers",
2326
"Natural Language :: English",

src/bitpay/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Class Client
33
package Bitpay
44
author Antonio Buedo
5-
version 1.0.2201
5+
version 3.1.2203
66
See bitpay.com/api for more information.
77
"""
88
import os
@@ -81,7 +81,7 @@ class Client:
8181
* Class Client
8282
* @package Bitpay
8383
* @author Antonio Buedo
84-
* @version 1.0.2201
84+
* @version 3.1.2203
8585
* See bitpay.com/api for more information.
8686
"""
8787

src/bitpay/env.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PROD = "Prod"
33
TESTURL = "https://test.bitpay.com/"
44
PRODURL = "https://bitpay.com/"
5-
BITPAYAPIVERSION = "1.0.2201"
6-
BITPAYPLUGININFO = "BitPay_Python_Client_v1.0.2201"
5+
BITPAYAPIVERSION = "2.0.0"
6+
BITPAYPLUGININFO = "BitPay_Python_Client_v3.1.2203"
77
BITPAYAPIFRAME = "std"
8-
BITPAYAPIFRAMEVERSION = "1.0.2201"
8+
BITPAYAPIFRAMEVERSION = "1.0.0"

0 commit comments

Comments
 (0)