forked from python-smpplib/python-smpplib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 847 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 847 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
from setuptools import setup, find_packages
import sys
setup(name="python-smpplib",
version='1.0.1',
url='https://github.com/podshumok/python-smpplib',
description='SMPP library for python',
packages=find_packages(),
install_requires=[ 'six', ],
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Communications :: Telephony',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved',
],
)