-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
41 lines (37 loc) · 1.22 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
[project]
name = "django_context_decorator"
version = "1.6.1"
description = "A context decorator for Django views"
readme = "README.rst"
requires-python = ">=3.6"
keywords = ["django", "context", "templates"]
authors = [
{name = "Tobias Kunze", email = "r@rixx.de"},
]
maintainers = [
{name = "Tobias Kunze", email = "r@rixx.de"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 4.1",
"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",
"License :: OSI Approved",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
homepage = "https://github.com/rixx/django-context-decorator"
Issues = "https://github.com/rixx/django-context-decorator/issues/"
[build-system]
requires = ["flit_core"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "django_context_decorator"
# flit and hatch make it easy to build single-file packages.
# setuptools made it impossible, so I randomly picked flit.