-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 957 Bytes
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
[build-system]
requires = ["setuptools", "django"]
build-backend = "setuptools.build_meta"
[project]
name = "django-msgraphbackend"
version = "1.0.0"
authors = [{ name = "Daniel Niccoli", email = "[email protected]" }]
description = "A Microsoft Graph Email Backend for Django."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["Django", "Backend", "EmailBackend", "Microsoft Graph"]
license = {file = "LICENSE"}
classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/danielniccoli/django-msgraphbackend"
Repository = "https://github.com/danielniccoli/django-msgraphbackend.git"
Issues = "https://github.com/danielniccoli/django-msgraphbackend/issues"