forked from themartorana/python-postmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 841 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name = "python-postmark",
version = "0.4.4",
packages = ['postmark'],
author = "Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)",
license = 'BSD',
description = "Postmark library for Python 2.6 and greater.",
long_description = "Note: To use Python 2.4 or 2.5, please use python-postmark version 0.3.2",
url = "http://github.com/themartorana/python-postmark",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Email',
]
)