forked from ofa/django-bouncy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1022 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
#!/usr/bin/env python
from setuptools import setup
import os
# import sys
import textwrap
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name='django-bouncy',
version='0.2.6',
author='Nick Catalano',
packages=[
'django_bouncy', 'django_bouncy.migrations', 'django_bouncy.tests'],
url='https://github.com/ofa/django-bouncy',
description=(
"A way to handle bounce and abuse reports delivered by Amazon's Simple"
" Notification Service regarding emails sent by Simple Email Service"
),
long_description=textwrap.dedent(
open(os.path.join(ROOT, 'README.rst')).read()),
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>=1.7',
'python-dateutil>=2.1',
'pyopenssl>=0.13.1',
'pem>=16.0.0',
],
keywords="aws ses sns seacucumber boto",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP']
)