forked from bitpay/bitpay-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.45 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
# chardet's setup.py
from distutils.core import setup
setup(
name = "bitpay",
packages = ["bitpay"],
version = "2.3.3",
description = "Accept bitcoin with BitPay",
author = "BitPay Integrations Team",
author_email = "[email protected]",
url = "https://github.com/bitpay/bitpay-python",
download_url = "https://github.com/bitpay/bitpay-python/tarball/v2.3.3",
keywords = ["bitcoin", "payments", "crypto"],
install_requires = ["requests", "ecdsa"],
classifiers = [
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"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 Python 3 or later; a Python 2 version is available separately.
"""
)