forked from jkeyes/clickatell-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
26 lines (24 loc) · 773 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 773 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
importos
fromsetuptoolsimportsetup
defread(fname):
"""Utility function to read the README file.
"""
returnopen(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="clickatell",
version="0.5.0",
author="John Keyes",
author_email="johnkeyes@gmail.com",
description= ("The clickatell module."),
license="Apache",
keywords="clickatell sms gateway",
url="http://keyes.ie/clickatell",
packages=['clickatell'],
long_description=read('README'),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)