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
27 lines (25 loc) · 1.03 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.03 KB
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
from setuptools import setup
# Read version without importing
version = {}
with open(os.path.join('postmark', '__init__.py')) as f:
exec(f.read(), version)
setup(
name="python-postmark",
version=__version__, # Use static version
packages=['postmark'],
author="Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)",
author_email="themartorana@gmail.com",
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',
]
)