forked from bitpay/python-bitpay-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.86 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
Setup file
"""
import setuptools
setuptools.setup(
name="bitpay",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
version="3.4.2203",
description="Accept bitcoin with BitPay",
author="Antonio Buedo",
author_email="[email protected]",
url="https://github.com/bitpay/python-bitpay-client",
download_url="https://github.com/bitpay/python-bitpay-client/tarball/v3.4.2203",
keywords=["bitcoin", "payments", "crypto", "cash", "ethereum", "online payments"],
python_requires=">=3.7",
install_requires=["requests", "ecdsa"],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial",
],
long_description="""\
Python Library for integrating with BitPay
This library is a simple way to integrate your application with
BitPay for taking Bitcoin payments. It exposes three basic
functions, authenticating with BitPay, creating invoices,
and retrieving invoices. It is not meant as a replacement for
the entire BitPay API. However, the key_utils module contains
all of the tools you need to use the BitPay API for other
purposes.
This version requires only Python 3.8.
""",
long_description_content_type="text/markdown",
)