Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 6fb1e19

Browse files
- Added PIP support to package
- Updated README.md
1 parent 31b57b3 commit 6fb1e19

File tree

2 files changed

+26
-15
lines changed

2 files changed

+26
-15
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ MultiSafepay is a collecting payment service provider which means we take care o
1111
- Python 3.6 or higher
1212
- Packages: requests
1313
## Installation
14-
Clone this git repository and make sure you meet the requirements, installation through pip will be added in a future release.
14+
Clone this git repository or install the package with pip.
15+
16+
The following command can be used to install the latest released version of the client:
17+
```python
18+
pip install multisafepay
19+
```
1520
## Usage
1621
Setup the client for testing
1722
```python

setup.py

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,37 @@
11
from setuptools import find_packages, setup
2-
version = "0.0.15"
2+
import os.path
3+
version = "0.2.0"
4+
ROOT_DIR = os.path.abspath(os.path.dirname(__file__))
35

46

57
def readme():
68
with open("README.md") as f:
7-
print(f.read())
8-
return f.read()
9+
long_description = f.read()
10+
return long_description
911

1012

1113
setup(
12-
name='multisafepay',
14+
name="multisafepay",
1315
version=version,
14-
license='MIT',
16+
license="MIT",
1517
long_description=readme(),
16-
long_description_content_type='text/markdown',
18+
long_description_content_type="text/markdown",
1719
packages=find_packages(),
1820
include_package_data=True,
19-
description='Python wrapper for the MultiSafepay API',
20-
author='MultiSafepay',
21-
author_email='[email protected]',
22-
url='https://github.com/MultiSafepay/multisafepay-python-wrapper',
21+
description="Python wrapper for the MultiSafepay API. The version prior 18/09/2019 is moved to the "
22+
"'mini-multisafepay' package.",
23+
author="MultiSafepay",
24+
author_email="[email protected]",
25+
url="https://github.com/MultiSafepay/multisafepay-python-wrapper",
26+
keywords=["multisafepay", "wrapper", "payment","gateway","ideal","paypal","creditcard","gift cards",
27+
"sofort banking"],
2328
install_requires=[
24-
'requests',
29+
"requests",
2530
],
2631
classifiers=[
27-
'Programming Language :: Python :: 3',
28-
'Intended Audience :: Developers',
29-
'License :: OSI Approved :: MIT License',
32+
"Programming Language :: Python :: 3",
33+
"Development Status :: 5 - Production/Stable",
34+
"Intended Audience :: Developers",
35+
"License :: OSI Approved :: MIT License",
3036
],
3137
)

0 commit comments

Comments
 (0)