forked from jkeyes/clickatell-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 773 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
import os
from setuptools import setup
def read(fname):
"""Utility function to read the README file.
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "clickatell",
version = "0.5.0",
author = "John Keyes",
author_email = "[email protected]",
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",
],
)