-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
43 lines (37 loc) · 1.38 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
37
38
39
40
41
42
43
import os
from setuptools import setup
import os.path
import beyonic
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
VERSION = beyonic.__version__
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="beyonic",
version=VERSION,
description="The official Python client for the MfsAfrica.com API",
author="Beyonic",
author_email="info@mfsafrica.com",
long_description=long_description,
long_description_content_type='text/markdown',
packages=["beyonic", "beyonic.apis"],
install_requires=["requests"],
license="MIT",
keywords=["api", "mobile payments", "mobile money", "beyonic", "mpesa"],
url="https://mfsafrica.com",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)