-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
97 lines (89 loc) · 2.11 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
authors = [
{ "name" = "Tom Carrick", "email" = "[email protected]" },
{ "name" = "Jeff Triplett", "email" = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Email",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["django", "django-rq", "rq"]
description = "Provides Django email integration for RQ (Redis Queue)"
license = { "file" = "LICENSE" }
name = "django-rq-email-backend"
readme = "README.rst"
version = "2.0.0"
[project.urls]
Homepage = "https://github.com/knyghty/django-rq-email-backend"
Repository = "https://github.com/knyghty/django-rq-email-backend"
[tool.coverage.run]
branch = true
source = ["."]
[tool.hatch.build.targets.sdist]
exclude = ["/tests", "requirements.txt", "runtests.py"]
[tool.hatch.build.targets.wheel]
packages = ["django_rq_email_backend"]
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
ignore = ["ISC001", "S105"]
select = [
"ASYNC",
"B",
"BLE",
"C4",
"C90",
"DJ",
"E",
"ERA",
"EXE",
"F",
"FA",
"FLY",
"G",
"I",
"INP",
"INT",
"ISC",
"N",
"PERF",
"PGH",
"PIE",
"PTH",
"PYI",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"SLOT",
"T10",
"T20",
"TCH",
"TRY",
"UP",
"W",
"YTT",
]
[tool.ruff.lint.isort]
force-single-line = true