forked from bepetersn/templated-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 766 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
"""
Package that allows defining an email subject,
plain text, & html in a template, thus keeping it
separate from application logic, and providing a
consistent way to interpolate data into it.
"""
from distutils.core import setup
import setuptools # this import is needed so that some options and commands work
setup(
name='templated-mail',
version='0.4.0.2',
author='Brian E. Peterson',
author_email='[email protected]',
url='https://github.com/bepetersn/templated-mail',
zip_safe=False,
description=__doc__,
packages=[
'templated_mail',
'templated_mail.contrib'
],
install_requires=[
'yagmail',
'mock',
'bunch',
'jinja2',
'simple_configparser'
],
)