-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1012 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.7",
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>=4.2",
"python-dateutil>=2.8",
"pyopenssl>=22.1.0",
"pem>=21.1.0",
],
keywords="aws ses sns seacucumber boto",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
],
)