-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (33 loc) · 1.19 KB
/
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from setuptools import setup, find_packages
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setup(
name='mtnmomoapi',
version='0.0.6',
license='MIT license',
author = "Mathews Musukuma",
author_email = "sikaili99@gmail.com",
description = "An easy to use Python wrapper for the MTN MoMo API.",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/sikaili99/mtnmomoapi",
project_urls = {
"Bug Tracker": "https://github.com/sikaili99/mtnmomoapi/issues",
"repository" : "https://github.com/sikaili99/mtnmomoapi"
},
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=[
'MoMo API', 'MoMo API Python Wrapper', 'MoMo API Python','MTN Zambia MoMO API Python', 'MTN Mobile Money API Python'
],
package_dir = {"": "src"},
packages = find_packages(where="src"),
python_requires = ">=3.6"
)