-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 952 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 952 Bytes
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
from setuptools import setup
with open('README.rst') as readme:
readme = readme.read()
setup(
name='sslwireless_sms',
packages=['sslwireless_sms'],
version='0.0.3',
description='A simple python wrapper for sslwireless sms api.',
long_description=readme,
author='Rahul Haque',
author_email='rahulhaque07@gmail.com',
install_requires=[
'requests',
'xmltodict'
],
license='MIT',
url='https://github.com/rahulhaque/sslwireless-sms-wrapper-python',
download_url='https://github.com/rahulhaque/sslwireless-sms-wrapper-python/archive/v0.0.3.tar.gz',
keywords=['python', 'sslwireless', 'sms', 'api-wrapper'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)