btcpay-python/setup.py
Jeff Vandrew Jr fc2dda18de version bump
2019-01-16 23:39:34 -05:00

31 lines
1000 B
Python

from setuptools import setup, find_packages
setup(
name="btcpay",
packages=find_packages(),
version="1.1.0",
description="Accept bitcoin with BTCPay",
url="https://github.com/btcpayserver/btcpay-python",
download_url="https://github.com/btcpayserver/btcpay-python/archive/v1.0.3.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"
]
)