-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* setup.py, minor fixes to create() and refund() and package security update. * passing only source to source builder instead of the whole payment object
- Loading branch information
1 parent
159e308
commit 1a05390
Showing
5 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
import base64 | ||
|
||
import requests | ||
import json | ||
from moyasar.payment import Payment | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import setuptools | ||
|
||
with open("README.rst", "r") as fh: | ||
long_description = fh.read() | ||
setuptools.setup( | ||
name="moyasar-python", | ||
version="0.6", | ||
author="Moyasar", | ||
author_email="developer@moyasar.com", | ||
description="Moyasar Python language wrapper", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/moyasar/moyasar-python", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
) |