forked from zamazaljiri/django-mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 989 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
31
32
from setuptools import setup, find_packages
from mailer import get_version
setup(
name="django-mailer",
version=get_version(),
description="A reusable Django app for queuing the sending of email. Forked from pinax/django-mailer.",
author="Jiri Zamazal",
author_email="[email protected]",
url="http://github.com/zamazaljiri/django-mailer",
packages=find_packages(),
include_package_data=True,
package_dir={"mailer": "mailer"},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Framework :: Django",
],
install_requires = [
'Django >= 1.6',
'six >= 1.5.2',
'South >= 0.8.4',
'django-easymode >= 1.4b2',
],
)