-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.67 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
# SPDX-FileCopyrightText: 2025-2026 Sébastien Helleu <flashcode@flashtux.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[project]
name = "msgcheck"
version = "4.2.0"
description = "Perform various checks on gettext files"
readme = "README.md"
authors = [
{ name = "Sébastien Helleu", email = "flashcode@flashtux.org" }
]
license = "GPL-3.0-or-later"
keywords = ["gettext"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Localization",
]
requires-python = ">=3.10"
dependencies = [
"pyenchant>=3.3.0",
]
[project.scripts]
msgcheck = "msgcheck:main"
[project.urls]
Repository = "https://github.com/flashcode/msgcheck"
Issues = "https://github.com/flashcode/msgcheck/issues"
Changelog = "https://github.com/flashcode/msgcheck/blob/main/CHANGELOG.md"
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=7.4.4",
"pytest-cov>=4.1.0",
]
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*.py" = [
"ANN001", # missing-type-function-argument
"FBT", # flake8-boolean-trap
"PLR2004", # magic-value-comparison
"S101", # assert
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true