-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 999 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 999 Bytes
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
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
setup(
name="btcpay-python-sdk",
version="0.1.0",
packages=find_packages(exclude=["tests", "tests.*"]),
description="BTCPay Python SDK using the Greenfield API",
long_description=README_MD,
long_description_content_type="text/markdown",
url="https://github.com/enfront/btcpa-python-sdk",
author="Enfront LLC",
author_email="support@enfront.io",
keywords="btcpay, bitcoin, payments, crypto",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial"
],
install_requires=[
"requests",
"ecdsa"
],
)