forked from themartorana/python-postmark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (22 loc) · 783 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.2.0",
packages = find_packages(),
author = "Dave Martorana & Richard Cooper",
# 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 :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)