-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
30 lines (29 loc) · 943 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
26
27
28
29
30
from setuptools import setup
setup(
name = "django-postmark",
version = __import__("postmark").__version__,
author = "Donald Stufft",
author_email = "[email protected]",
description = "A Django reusable app to send email with postmark, as well as models and views to handle bounce integration.",
long_description = open("README.rst").read(),
url = "http://github.com/dstufft/django-postmark/",
license = "BSD",
install_requires = [
"httplib2",
"pytz",
],
packages = [
"postmark",
"postmark.migrations",
],
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
"Framework :: Django",
]
)