This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
forked from smsapi/smsapi-python-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (37 loc) · 1.48 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
#!/usr/bin/env python
# _/_/_/ _/_/ _/_/_/ _/_/_/
# _/ _/_/_/ _/_/ _/_/_/ _/ _/ _/ _/ _/
# _/_/ _/ _/ _/ _/_/ _/_/_/_/ _/_/_/ _/
# _/ _/ _/ _/ _/_/ _/ _/ _/ _/
# _/_/_/ _/ _/ _/ _/_/_/ _/ _/ _/ _/_/_/
import smsapi
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='smsapi',
version=smsapi.__version__,
description='Python library for manage SmsApi account via HTTP/S',
long_description=open('README.md').read(),
author='SMSAPI',
author_email='[email protected]',
url='https://github.com/smsapicom/smsapicom-python-client',
packages=['smsapi', 'smsapi.actions'],
package_data={'': ['LICENSE', 'NOTICE'], 'requests': ['*.pem']},
package_dir={'smsapi': 'smsapi'},
include_package_data=True,
license=open('LICENSE').read(),
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Apache 2.0',
'Topic :: Communications :: Mobile messages'
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
),
test_suite='tests.suite'
)