-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 900 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (23 loc) · 900 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
25
26
27
28
29
from distutils.core import setup
setup(name = 'simplesms',
version = '0.1.3d',
license = 'MIT',
url = 'http://github.com/eokyere/simplesms',
description = 'Build SMS apps on top of a simple SMS/USSD gateway',
install_requires = [
'phonenumbers==3.5b2',
'pyserial'
],
packages = ['simplesms', 'simplesms.contrib'],
keywords = ['gsm', 'sms', 'communication'],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
long_description = open('README.txt', 'rt').read(),
author = 'Emmanuel Okyere',
author_email = 'chief@hutspace.net',
)