-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.67 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
[project]
name = "jinja2utils"
version = "0.1.1"
description = "Collection of utils for jinja2"
keywords = [
"jinja2", "jinja2-template", "jinja2-extention", "template", "plural",
"pluralize", "elapsed", "remaining", "uchar", "unicode"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"License :: OSI Approved :: MIT License",
"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",
]
authors = [
{ name = "vd", email = "jinja2utils@vd2.org" },
]
dependencies = [
"jinja2~=3.1.3",
]
requires-python = ">=3.8,<3.13"
readme = "README.md"
license = { file = "LICENSE" }
[project.urls]
homepage = "https://github.com/vd2org/jinja2utils"
repository = "https://github.com/vd2org/jinja2utils.git"
issues = "https://github.com/vd2org/jinja2utils/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest~=8.0.2",
"ubump~=0.1.10; python_version >= '3.11'",
"requests>=2.31.0",
]
[tool.ubump]
template = "v${major}.${minor}.${patch}"
message = "Bump to ${version}"
tag = true
files = ["src/jinja2utils/__init__.py"]