forked from duointeractive/sea-cucumber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 995 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
from setuptools import setup
DESCRIPTION = "A Django email backend for Amazon Simple Email Service, backed by celery."
LONG_DESCRIPTION = open('README.rst').read()
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'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='seacucumber',
version='1.5.1',
packages=[
'seacucumber',
'seacucumber.management',
'seacucumber.management.commands',
],
author='Gregory Taylor',
author_email='[email protected]',
url='https://github.com/duointeractive/sea-cucumber/',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=['boto>=2.8.0', 'celery'],
)