-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (26 loc) · 837 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
from setuptools import setup, find_packages
import os
import platform
DESCRIPTION = "A Django email backend for Amazon Simple Email Service with minimal dependencies."
LONG_DESCRIPTION = None
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
]
setup(
name='django-ses-backend',
version='0.1',
packages=['django_ses_backend'],
author='Mike du Heaume',
author_email='mduheaume@gmail.com',
url='http://github.com/mduheaume/django-ses-backend/',
license='BSD',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
)