forked from django-ses/django-ses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.52 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "django-ses"
version = "3.4.0"
description = "A Django email backend for Amazon's Simple Email Service"
authors = [
"Harry Marr <[email protected]>",
"Wes Winham <[email protected]>",
"Ross Lawley <[email protected]>",
"Paul Craciunoiu <[email protected]>",
]
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',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/django-ses/django-ses"
include = ["example", "tests"]
[tool.poetry.dependencies]
python = "^3.7"
boto3 = ">=1.0.0"
pytz = ">=2016.10"
django = ">=2.2"
importlib-metadata = {version = ">=1", python = "<3.8"}
cryptography = {version = ">=36.0.2", optional = true}
requests = {version = ">=2.27.1", optional = true}
[tool.poetry.extras]
bounce = ["requests", "cryptography"]
events = ["requests", "cryptography"]
[tool.poetry.dev-dependencies]
tox = "^3.24.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"