forked from Pylons/pyramid_mailer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
63 lines (51 loc) · 1.69 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
pyramid_mailer is a package for taking the pain out of sending emails
in your Pyramid project.
This includes:
1. Wrapping the low-level Python email library with an easy-to-use
API, which includes attachments and mulipart content.
2. Send emails immediately or to add to a maildir queue.
3. Managing email sends inside a transaction, to prevent emails being sent
if your code fails.
4. Features to help with unit testing.
pyramid_mailer uses the repoze_sendmail library for managing email sending
and transacton management, and borrows code from Zed Shaw's Lamson for
wrapping email messages.
Links
`````
* `documentation
<http://docs.pylonsproject.org/projects/pyramid_mailer/en/latest/>`_
* `development version
<https://github.com/Pylons/pyramid_mailer>`_
"""
from setuptools import setup
setup(
name='pyramid_mailer',
version='0.6',
license='BSD',
author='Dan Jacob',
author_email='danjac354@gmail.com',
description='Sendmail package for Pyramid',
long_description=__doc__,
url="http://docs.pylonsproject.org/projects/pyramid_mailer/en/latest/",
packages=[
'pyramid_mailer',
],
zip_safe=False,
platforms='any',
install_requires=[
'pyramid',
'repoze.sendmail',
],
test_suite='pyramid_mailer',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)