forked from gannetson/python-mpesa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (34 loc) · 1003 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
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
import os
import setuptools
import mpesa
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setuptools.setup(
name="python-mpesa",
version=mpesa.__version__,
packages=setuptools.find_packages(),
include_package_data=True,
license='BSD',
description='M-Pesa API G2 Python adapter',
long_description='Python adapter for Safaricom M-Pesa API G2.',
url="https://goodup.com",
author="Loek van Gent",
author_email="[email protected]",
install_requires=[
'suds-jurko',
'requests[security]>=2.8.1'
],
tests_require=[
'pytest',
'nose'
],
test_suite='nose.collector',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
]
)