-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
71 lines (62 loc) · 1.64 KB
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
[project]
name = "textcompose"
version = "1.3.0"
description = "A Python library for building dynamic, structured text templates using a declarative, compose-based approach"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "m-xim", email = "i@m-xim.ru" },
]
requires-python = ">=3.10"
packages = [{ include = "textcompose" }]
dependencies = [
"jinja2>=3.1.6",
"magic-filter>=1.0.12",
"python-box>=7.3.2",
]
keywords = [
"template",
"text generation",
"compose",
"structured text",
"templating",
"logic templates",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Text Processing :: General",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/m-xim/textcompose"
Repository = "https://github.com/m-xim/textcompose"
Issues = "https://github.com/m-xim/textcompose/issues"
[dependency-groups]
dev = [
"ruff",
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["COM812"]
[tool.semantic_release]
version_source = "pyproject"
commit_message = "chore(release): {version}"
version_toml = [
"pyproject.toml:project.version",
]
[tool.semantic_release.branches.main]
match = "main"
[tool.semantic_release.branches.dev]
match = "dev"
prerelease = true