-
Notifications
You must be signed in to change notification settings - Fork 251
/
setup.py
34 lines (31 loc) · 1.13 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
from distutils.core import setup
import sys, os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'paypalrestsdk'))
from version import __version__
setup(
name='paypalrestsdk',
version= __version__,
author='PayPal',
author_email='[email protected]',
packages=['paypalrestsdk'],
scripts=[],
url='https://developer.paypal.com',
license='LICENSE.txt',
description='The PayPal REST SDK provides Python APIs to create, process and manage payment',
long_description="""
The PayPal REST SDK provides Python APIs to create, process and manage payment.
1. https://github.com/paypal/rest-api-sdk-python/ - README and Samples
2. https://developer.paypal.com/webapps/developer/docs/api/ - API Reference
""",
install_requires=['httplib2'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords="paypal rest sdk",
)