forked from braintree/braintree_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 811 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name="braintree",
version="3.29.2",
description="Braintree Python Library",
author="Braintree",
author_email="support@braintreepayments.com",
url="https://developers.braintreepayments.com/python/sdk/server/overview",
packages=["braintree", "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,
classifiers = [
"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"
]
)