btcpay-python/setup.py
Jeff Vandrew Jr 9b38e72968 bump version
2020-10-03 10:54:50 -04:00

31 lines
1007 B
Python

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"
]
)