1"""
2Flask-Mail
3----------
4
5A Flask extension for sending email messages.
6
7Please refer to the online documentation for details.
8
9Links
10`````
11
12* `documentation <http://packages.python.org/Flask-Mail>`_
13"""
14from setuptools import setup
15
16
17setup(
18    name='Flask-Mail',
19    version='0.9.1',
20    url='https://github.com/rduplain/flask-mail',
21    license='BSD',
22    author='Dan Jacob',
23    author_email='danjac354@gmail.com',
24    maintainer='Ron DuPlain',
25    maintainer_email='ron.duplain@gmail.com',
26    description='Flask extension for sending email',
27    long_description=__doc__,
28    py_modules=[
29        'flask_mail'
30    ],
31    test_suite='nose.collector',
32    zip_safe=False,
33    platforms='any',
34    install_requires=[
35        'Flask',
36        'blinker',
37    ],
38    tests_require=[
39        'nose',
40        'blinker',
41        'speaklater',
42        'mock',
43    ],
44    classifiers=[
45        'Development Status :: 4 - Beta',
46        'Environment :: Web Environment',
47        'Intended Audience :: Developers',
48        'License :: OSI Approved :: BSD License',
49        'Operating System :: OS Independent',
50        'Programming Language :: Python',
51        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
52        'Topic :: Software Development :: Libraries :: Python Modules'
53    ]
54)
55