forked from Arlus/mpesa-py
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
24 lines (22 loc) · 899 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mpesa-py",
version="0.0.4",
author="Aurlus Ismael Wedava",
author_email="arlusishmael@gmail.com",
description="A Python wrapper for Mpesa Daraja APIs.",
long_description="This library provides thin wrappers around Mpesa Daraja APIs. The APIs supported are Reversal, Transaction Status, Account Balance, B2B, B2C, C2B and MPESA Express",
url="https://github.com/Arlus/mpesa-py",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
'certifi', 'chardet==3.0.4', 'future==0.16.0', 'idna==2.7', 'requests==2.19.0',
'six==1.11.0', 'urllib3==1.23', 'pytest==3.6.1 '
],
)