-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
28 lines (26 loc) · 1.06 KB
/
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
27
28
from distutils.core import setup
from distutils.util import convert_path
postmark = {}
ver_path = convert_path('postmark/__init__.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), postmark)
setup(
name="python-postmark",
version=postmark['__version__'],
packages=['postmark'],
author="Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)",
author_email="[email protected]",
license='BSD',
description="Postmark library for Python 2.7 and greater.",
long_description="Note: To use Python 2.4 or 2.5, please use python-postmark version 0.3.2. Python 2.6 use version 0.4.4.",
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',
]
)