forked from braintree/braintree_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.27 KB
/
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
31
32
33
34
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://developers.braintreepayments.com/python/sdk/server/overview - API Reference
"""
setup(
name="braintree",
version="3.58.0",
description="Braintree Python Library",
long_description=long_description,
author="Braintree",
author_email="[email protected]",
url="https://developers.braintreepayments.com/python/sdk/server/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 :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
]
)