forked from pmarti/python-messaging
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1.04 KB
/
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
29
30
31
32
from setuptools import setup, find_packages
import sys
from messaging import VERSION
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name="python-messaging",
version='%s.%s.%s' % VERSION,
description='SMS/MMS encoder/decoder',
license=open('COPYING').read(),
packages=find_packages(),
install_requires=['nose','future'],
zip_safe=True,
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'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',
],
**extra
)