Skip to content

Commit 61919f1

Browse files
authored
Merge pull request #51 from renjithsraj/paywix_payu_api_service
Update readme files
2 parents 754a2ab + ab579ef commit 61919f1

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# PAYWIX
22

3-
paywix is a payment gateway wrapper for Django based applications, currently it's supporting following payment gateways
3+
Paywix is a lightweight SDK for payment processing for the python based applications, the package was initially supported only with the Django framework. In the new version, the package is supported by all python-based applications.
4+
5+
### Currently supported Payment Gateways
6+
47
- Payu
58

69
### Installation

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# PAYWIX
22

3-
paywix is a payment gateway wrapper for Django based applications, currently it's supporting following payment gateways
3+
Paywix is a lightweight SDK for payment processing for the python based applications, the package
4+
was initially supported only with the Django framework. In the new version, the package is supported
5+
by all python-based applications.
6+
7+
### Currently supported Payment Gateways
48
- Payu
59

610
### Installation

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99

1010
setup(
1111
name='paywix',
12-
version='1.2.0',
13-
description='Multipayment gateway wrapper for Django',
12+
version='1.3.0',
13+
author="Renjith S Raj",
14+
author_email="renjithsraj@live.com",
15+
description='Paywix is a light weight payment processing sdk for python based applications.',
1416
long_description=README,
1517
long_description_content_type='text/markdown',
1618
install_requires=[
19+
'requests'
1720
],
1821
url='https://github.com/renjithsraj/paywix',
1922
maintainer='Renjith S Raj',
@@ -22,9 +25,15 @@
2225
packages=find_packages(),
2326
include_package_data=True,
2427
classifiers=[
25-
"Programming Language :: Python :: 3",
28+
'Programming Language :: Python :: 3',
29+
'Programming Language :: Python :: 3.5',
30+
'Programming Language :: Python :: 3.6',
31+
'Programming Language :: Python :: 3.7',
32+
'Programming Language :: Python :: 3.8',
33+
'Programming Language :: Python :: 3 :: Only',
2634
"License :: OSI Approved :: MIT License",
2735
"Operating System :: OS Independent",
2836
],
2937
python_requires='>=3.6',
38+
keywords='payment processing, payu, python payment gateway wrapper, cashfree, paytm, etc',
3039
)

0 commit comments

Comments
 (0)