forked from equeny/tornadomail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 833 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
import os
from distutils.core import setup
version = '0.1.2'
setup(
name="tornadomail",
version=version,
keywords=["tornado", "mail", "tornadomail", "asyncmail"],
long_description=open(os.path.join(os.path.dirname(__file__),"README.md"), "r").read(),
description="Asynchronous email sending library for Tornado. Port of django.mail.",
author="Anton Agafonov",
author_email="[email protected]",
url="http://github.com/equeny/tornadomail",
license="Apache Software License",
classifiers=[
"License :: OSI Approved :: Apache Software License",
],
packages=['tornadomail', 'tornadomail.backends'],
install_requires=['tornado>=2.1'],
requires=['tornado (>=2.1)'],
download_url="http://github.com/downloads/equeny/tornadomail/tornadomail-%s.tar.gz" % version,
)