-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (64 loc) · 1.57 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 = "tstr"
description = "Template string utilities and backports"
version = "0.4.1"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "ilotoki0804", email = "ilotoki0804@gmail.com" }]
license = "Apache-2.0"
keywords = [
"template",
"string",
"utility",
"backport",
"template string",
"t-string",
"tstring",
"pep-750",
"pep750",
"pep 750",
]
dependencies = []
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Typing :: Typed",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Text Processing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
]
[project.urls]
Repository = "https://github.com/ilotoki0804/tstr"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "UP", "W"]
ignore = ["E501", "E402", "S101"]
[tool.coverage.report]
exclude_also = [
"unreachable",
"case other:",
"assert False",
"if (typing\\.)?TYPE_CHECKING:",
"@(typing\\.)?deprecated",
"@overload",
"@pytest.mark.skip",
"@mark.skip",
'if __name__ == "__main__":'
]
[tool.hatch.build.targets.wheel]
packages = ["src/tstr"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"