| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /software/Services/smpp/python-smpplib-master/python-smpplib-master/ |
Upload File : |
import io
from setuptools import find_packages, setup
try:
long_description_kwd=dict(
long_description=io.open('README.md', 'rt', encoding='utf-8').read(),
long_description_content_type='text/markdown',
)
except OSError:
long_description_kwd=dict()
setup(
name='smpplib',
version='2.2.3',
url='https://github.com/python-smpplib/python-smpplib',
description='SMPP library for python',
packages=find_packages(),
install_requires=['six'],
extras_require=dict(
tests=('typing; python_version < "3.5"', 'pytest', 'mock'),
),
zip_safe=True,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python',
'Topic :: Communications :: Telephony',
'Topic :: Communications',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
),
**long_description_kwd
)