forked from vintasoftware/django-templated-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "django-templated-email"
version = "3.0"
description = "A Django oriented templated / transaction email abstraction"
authors = [
"Bradley Whittington <radbrad182@gmail.com>",
"Aaron DeVore <adevore@pdx.edu>"
]
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
]
readme = "README.rst"
packages = [
{ include = "templated_email" }
]
[tool.poetry.dependencies]
python = "^3.6"
django-render-block = "^0.8.1"
six = ">=1"
html2text = {version = ">=2020.1.16", optional = true}
# Testing
django-anymail = {version = "^8.1", optional = true}
pytest-django = {version = "^4.1.0", optional = true}
mock = {version = "^4.0.2", optional = true}
django-pytest = {version = "^0.2.0", optional = true}
tox = {version = "^3.20.1", optional = true}
pytest = {version = "^6.1.2", optional = true}
pytest-pythonpath = {version = "^0.7.3", optional = true}
pytest-cov = {version = "^2.10.1", optional = true}
coveralls = {version = "*", optional = true}
[tool.poetry.dev-dependencies]
[tool.poetry.extras]
tests = [
"django-anymail",
"pytest-django",
"mock",
"django-pytest",
"tox",
"pytest",
"pytest-pythonpath",
"pytest-cov",
"coveralls",
"html2text",
]
autoplain = ["html2text"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"