forked from python-smpplib/python-smpplib
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (26 loc) · 896 Bytes
/
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
from setuptools import setup, find_packages
import sys
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name="python-smpplib",
version='1.0.1',
url='https://github.com/podshumok/python-smpplib',
description='SMPP library for python',
packages=find_packages(),
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',
],
**extra
)