-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.16 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
# SPDX-FileCopyrightText: 2013-2022 Miguel Gonzalez <[email protected]>
#
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dj-email-url"
version = "1.0.6"
requires-python = ">= 3.8"
description = "Use an URL to configure email backend settings in your Django Application."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Miguel Gonzalez", email = "[email protected]" }]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/migonzalvar/dj-email-url"