forked from rajarampadmanathan/Checkout-Python-SDK-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 872 Bytes
/
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
from setuptools import setup, find_packages;
# with open("README.md", "r") as fh:
# long_description = fh.read()
setup(
name="paypal-checkout-serversdk",
version="1.0.0",
author="https://developer.paypal.com",
author_email="[email protected]",
description="Python Rest SDK for PayPal Checkout",
long_description="Python Rest SDK for PayPal Checkout",
long_description_content_type="text/markdown",
url="https://github.com/paypal/Checkout-Python-SDK/",
packages=find_packages(exclude=["tests","sample"]),
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: SEE LICENSE IN https://github.com/paypal/Checkout-Python-SDK/blob/master/LICENSE",
"Operating System :: OS Independent",
],
install_requires=["braintreehttp"],
)