-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (46 loc) · 1.6 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (46 loc) · 1.6 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf-8
"""
Payments
Call the Payments API to authorize payments, capture authorized payments, refund payments that have already been captured, and show payment information. Use the Payments API in conjunction with the <a href=\"/docs/api/orders/v2/\">Orders API</a>. For more information, see the <a href=\"/docs/checkout/\">PayPal Checkout Overview</a>.
The version of the OpenAPI document: 2.5
Generated by: https://konfigthis.com
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "pay-pal-payment-python-sdk"
VERSION = "2.5"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
# read the contents of README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
REQUIRES = [
"certifi >= 2023.7.22",
"python-dateutil ~= 2.8.2",
"typing_extensions ~= 4.3.0",
"urllib3 ~= 1.26.18",
"cryptography ~= 42.0.5",
"frozendict ~= 2.3.4",
"aiohttp ~= 3.9.2",
"pydantic ~= 2.4.2"
]
setup(
name=NAME,
version=VERSION,
description="Payments",
author="Konfig",
author_email="engineering@konfigthis.com",
url="https://github.com/konfig-sdks/pay-pal-payment-python-sdk/tree/main/python",
keywords=["Konfig", "Payments"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown'
)