forked from gecko-landmarks/smspdu
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (22 loc) · 785 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
#! /usr/bin/env python
from distutils.core import setup
from smspdu import __doc__
# perform the setup action
setup(
name = "smspdu",
version = "1.0.1-fixed",
description = "SMS PDU encoding and decoding, including GSM-0338 character set",
long_description = __doc__.decode('utf8'),
author = "Richard Jones",
author_email = "[email protected]",
packages = ['smspdu'],
url = 'http://pypi.python.org/pypi/smspdu',
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: BSD License',
],
)
# vim: set filetype=python ts=4 sw=4 et si