-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (108 loc) · 3.18 KB
/
pyproject.toml
File metadata and controls
119 lines (108 loc) · 3.18 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-templated-email-md"
version = "2025.10.2"
description = "An extension for django-templated-email for creating emails with Markdown"
authors = [{ name = "Jack Linke", email = "jacklinke@gmail.com" }]
license = "MIT"
readme = "README.md"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.11,<4.0"
dependencies = [
"click>=8.1",
"django>=4.2.15",
"django-render-block>=0.8",
"django-templated-email>=3.0",
"html2text>=2024.2",
"markdown>=3.7",
"premailer>=3.10",
]
[project.urls]
Homepage = "https://github.com/OmenApps/django-templated-email-md"
Repository = "https://github.com/OmenApps/django-templated-email-md"
Documentation = "https://django-templated-email-md.readthedocs.io"
Changelog = "https://github.com/OmenApps/django-templated-email-md/releases"
[tool.uv]
dev-dependencies = [
"bandit==1.8.6",
"black==25.9.0",
"coverage[toml]==7.11.0",
"darglint==1.8.1",
"django-anymail==13.1",
"flake8-bugbear==25.10.21",
"flake8-docstrings==1.7.0",
"flake8-rst-docstrings==0.4.0",
"flake8==7.3.0",
"furo==2025.9.25",
"isort==7.0.0",
"linkify-it-py==2.0.3",
"myst-parser==4.0.1",
"nox[pbs]==2025.10.16",
"pep8-naming==0.15.1",
"pre-commit-hooks==6.0.0",
"pre-commit==4.3.0",
"psycopg-binary==3.2.11",
"Pygments==2.19.2",
"pytest-cov==7.0.0",
"pytest-django==4.11.1",
"pytest==8.4.2",
"python-environ==0.4.54",
"pyupgrade==3.21.0",
"safety==3.6.2",
"sphinx-autobuild==2025.8.25",
"sphinx-click==6.1.0",
"sphinx==8.2.3",
"xdoctest[colors]==1.3.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
templated_email_md = ["templates/templated_email/*", "locale/*"]
[tool.black]
line-length = 120
target-version = ["py311", "py312", "py313", "py314"]
force-exclude = '''
(
.nox
)
'''
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["example_project", "*/example_project"]
[tool.coverage.run]
branch = true
source = ["src", "example_project"]
[tool.coverage.report]
show_missing = true
fail_under = 50
omit = [".nox/*", "example_project/*", "**/migrations/*", "**/__init__.py"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "example_project.settings"
python_files = ["*test_*.py", "*_test.py", "example_project/*.py"]
log_cli = true
log_cli_level = "INFO"
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
extend_skip = [".nox"]