-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
27 lines (25 loc) · 866 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 = ['requests>=0.10.8']
if sys.version_info < (2, 6):
requires.append('simplejson')
setup(
name = "kavenegar",
py_modules = ['kavenegar'],
version = "1.1.3",
description = "Kavenegar Python library",
author = "Kavenegar Team",
author_email = "[email protected]",
url = "https://github.com/kavenegar/kavenegar-python",
keywords = ["kavenegar", "sms"],
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",
]
)