forked from kavenegar/kavenegar-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 900 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
from setuptools import setup
import sys
requires = ["httpx>=0.23.0"]
if sys.version_info < (3, 9):
sys.exit("Sorry, Python < 3.9 is not supported")
setup(
name="aio-kavenegar",
version="2.0.1",
description="AsyncIO compatible Kavenegar Python library",
author="Alireza Jafari (Original project by Kavenegar Team)",
author_email="[email protected]",
url="https://github.com/alirezaja1384/aio-kavenegar",
keywords=["kavenegar", "sms", "asyncio"],
install_requires=requires,
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Telephony",
],
)