Skip to content

Commit a97b5de

Browse files
committed
feat(upload): first
1 parent 3134f27 commit a97b5de

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

paypal_subscription/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import paypal
File renamed without changes.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PayPalAPI Library
1+
# PayPal Subscription (Python) Library
22
[![License](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
33

44
This Python library allows you to interact with the PayPal REST API to manage subscriptions with variable pricing. It includes functionality for creating, updating, suspend and verifying subscriptions, as well as managing products and plans.

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='paypal-subscription',
5+
version='0.1.0',
6+
packages=find_packages(),
7+
author='Codeat',
8+
author_email='[email protected]',
9+
description='This Python library allows you to interact with the PayPal REST API to manage subscriptions with variable pricing. It includes functionality for creating, updating, suspend and verifying subscriptions, as well as managing products and plans.',
10+
long_description=open('README.md').read(),
11+
long_description_content_type='text/markdown',
12+
url='https://github.com/CodeAtCode/paypal-subscription-lib',
13+
classifiers=[
14+
'Programming Language :: Python :: 3',
15+
'License :: OSI Approved :: MIT License',
16+
'Operating System :: OS Independent',
17+
],
18+
python_requires='>=3.11',
19+
)

0 commit comments

Comments
 (0)