-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
30 lines (28 loc) · 1007 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="btcpay-python",
packages=find_packages(),
version="1.3.0",
description="Accept bitcoin with BTCPay",
url="https://github.com/btcpayserver/btcpay-python",
download_url="https://github.com/btcpayserver/btcpay-python/archive/v1.3.0.tar.gz",
license='MIT',
keywords=["bitcoin", "payments", "crypto"],
install_requires=[
"requests",
"ecdsa"
],
package_data={'': ['LICENSE']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.6",
"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"
]
)