-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 745 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='mpesa-api',
version='0.2.3',
packages=find_packages(),
description="Mpesa B2C, C2B, STKPush Django library based on the new Api's https://developer.safaricom.co.ke",
author='Jijo Lemaiyan',
author_email='george@lemaiyan.xyz',
url='https://github.com/lemaiyan/mpesa_api',
download_url='https://github.com/lemaiyan/mpesa_api/archive/0.2.3.tar.gz',
requires=[
'Django (>=2.1.7)',
'djangorestframework (>=3.7.3)',
'celery (>=4.1.0)',
'requests (>=2.18.4)',
'decouple (>=3.3)',
'rangefilter (>=0.6.1)'
],
include_package_data=True,
license='MIT License',
zip_safe=True
)