-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
88 lines (78 loc) · 1.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "messageformat2"
authors = [{ name = "Tomas Roun", email = "tomas.roun8@gmail.com" }]
description = "Python implementation of Unicode MessageFormat 2.0"
readme = "README.md"
requires-python = ">=3.12"
keywords = [
"i18n",
"internationalization",
"localization",
"messageformat",
"messageformat 2",
"cldr",
"gettext",
]
license = { file = "LICENSE" }
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
]
dependencies = ["Babel==2.18.0", "click==8.3.1"]
dynamic = ["version"]
[dependency-groups]
dev = [
"pytest==9.0.2",
"pytest-snapshot==0.9.0",
"pytest-cov==7.0.0",
"ruff==0.15.2",
"ty==0.0.18",
"mkdocs==1.6.1",
"mkdocstrings[python]==1.0.3",
"mkdocs-material==9.7.2",
]
docs = ["mkdocs==1.6.1", "mkdocstrings[python]==1.0.3", "mkdocs-material==9.7.2"]
[project.urls]
Homepage = "https://github.com/tomasr8/messageformat2"
Github = "https://github.com/tomasr8/messageformat2"
[project.scripts]
mf2 = "messageformat2.cli:cli"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D",
"ANN002",
"ANN003",
"ANN204",
"ANN401",
"COM812",
"C901",
"BLE001",
"RET503",
"ISC001",
"N802",
"N803",
"N806",
"N818",
"PLR0912",
"S101",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN001", "ANN201", "PLR2004"]
[tool.ruff]
line-length = 120
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.hatch.build.targets.wheel]
packages = ["messageformat2"]
[tool.hatch.version]
path = "messageformat2/__init__.py"
[build-system]
requires = ["hatchling==1.28.0"]
build-backend = "hatchling.build"