forked from dstegelman/django-mail-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1006 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, find_packages
import mailqueue
version = mailqueue.VERSION
setup(name='django-mail-queue',
version=version,
description="Simple Mail Queuing for Django",
long_description="Mail Queueing for Django",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Utilities",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
],
keywords='django-mail-queue',
author='Derek Stegelman',
url='http://github.com/dstegelman/django-mail-queue',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)