forked from hamano/flask-mail-sendgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (30 loc) · 1009 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
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(
name='Flask-Mail-SendGrid',
version='0.5',
description="Flask extension for sendgrid. It has same interface with Flask-Mail.",
long_description=long_description,
url="http://github.com/hamano/flask-mail-sendgrid",
author = "HAMANO Tsukasa",
author_email = "[email protected]",
py_modules=['flask_mail_sendgrid'],
install_requires=[
'Flask-Mail',
'SendGrid>=6.0.2',
],
license="MIT",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)