-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 957 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 957 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
from setuptools import setup
setup(
name='smsc-python',
packages=['smsc'],
version='1.1.0',
description='Send SMS with https://www.smsc.com.ar/',
author='Joaquin Moine',
author_email='joaquinmoine@gmail.com',
url='https://github.com/joaquinmoine/smsc-python',
license='MIT',
keywords=['sms', 'send'],
install_requires=['requests>=2.20.0'],
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
],
)