forked from BradWhittington/django-mailgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1000 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
34
35
36
37
from setuptools import setup, find_packages
import os
import platform
DESCRIPTION = "A Django email backend for Mailgun"
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
setup(
name='django-mailgun',
version='0.2.2',
packages=['django_mailgun'],
author='Bradley Whittington',
author_email='radbrad182@gmail.com',
url='http://github.com/bradwhittington/django-mailgun/',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
install_requires=['requests'],
classifiers=CLASSIFIERS,
#TODO: get mailgun into pypi so it can be a requirement :)
)