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
|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = """
The Braintree Python SDK provides integration access to the Braintree Gateway.
1. https://github.com/braintree/braintree_python - README and Samples
2. https://developer.paypal.com/braintree/docs/reference/overview - API Reference
"""
setup(
name="braintree",
version="4.31.0",
description="Braintree Python Library",
long_description=long_description,
author="Braintree",
author_email="support@braintreepayments.com",
url="https://developer.paypal.com/braintree/docs/reference/overview",
packages=["braintree", "braintree.dispute_details", "braintree.exceptions", "braintree.exceptions.http", "braintree.merchant_account", "braintree.util", "braintree.test"],
package_data={"braintree": ["ssl/*"]},
install_requires=["requests>=0.11.1,<3.0"],
zip_safe=False,
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
)
|