-
Notifications
You must be signed in to change notification settings - Fork 122
/
setup.py
executable file
·32 lines (28 loc) · 987 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
#!/usr/bin/env python
from setuptools import setup
import sys
import os
version = "1.2.9"
long_description = open("README.md").read()
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
setup(
name="africastalking",
version=version,
packages=["africastalking"],
description="Official Africa's Talking Python SDK",
data_files=[("", ["README.md"])],
license="MIT",
author="Africa's Talking",
install_requires=["requests>=v2.18.4", "schema>=0.6.7"],
python_requires=">=2.7.10",
author_email="[email protected]",
url="https://github.com/AfricasTalkingLtd/africastalking-python",
download_url="https://codeload.github.com/AfricasTalkingLtd/africastalking-python/tar.gz/"
+ version,
keywords="ussd voice sms mpesa card bank b2b b2c sender_id payments airtime africastalking",
classifiers=[],
long_description=long_description,
long_description_content_type="text/markdown",
)