forked from themartorana/python-postmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 885 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
import os, distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
readme = os.path.join(os.path.dirname(__file__), 'README')
long_description = open(readme).read()
setup(
name = "python-postmark",
version = "0.3.1",
packages = find_packages(),
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.4 and greater.",
long_description = long_description,
url = "http://github.com/themartorana/python-postmark",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)