-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 1.07 KB
/
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 distutils.core import setup
setup(
name="django-mailing",
version=__import__("mailing").__version__,
description="A flexible Django app for templated mailings with support for celery queuing, SendGrid and more.",
long_description=open("docs/usage.txt").read(),
author="Jerome Paradis",
author_email="[email protected]",
url="http://github.com/JeromeParadis/django-mailing",
license='LICENSE.txt',
packages=[
"mailing",
],
package_dir={"mailing": "mailing"},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
],
install_requires=[
"Django >= 1.4.1",
"redis >= 2.4.10",
"celery",
"django-celery",
],
package_data={'mailing': ['templates/mailing/base.html', 'templates/mailing/base.txt']},
)