-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
160 lines (145 loc) · 3.72 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.2"
]
[project]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Utilities"
]
dependencies = [
"charset-normalizer>2.0,<4.0",
"ruamel.yaml",
"weblate-language-data>=2024.14"
]
description = "A translation file finder used in Weblate."
keywords = [
"i18n",
"l10n",
"gettext",
"weblate",
"translate"
]
name = "translation-finder"
requires-python = ">=3.9"
version = "2.20"
[[project.authors]]
email = "[email protected]"
name = "Michal Čihař"
[project.license]
text = "GPL-3.0-or-later"
[project.optional-dependencies]
dev = [
"translation-finder[lint,test,types]"
]
lint = [
"pre-commit==4.0.1"
]
test = [
"pytest",
"pytest-cov"
]
types = [
"mypy==1.14.1"
]
[project.readme]
content-type = "text/x-rst"
file = "README.rst"
[project.scripts]
weblate-discover = "translation_finder.api:cli"
[project.urls]
Documentation = "https://docs.weblate.org/"
Download = "https://github.com/WeblateOrg/translation-finder"
Funding = "https://weblate.org/donate/"
Homepage = "https://weblate.org/"
"Issue Tracker" = "https://github.com/WeblateOrg/translation-finder/issues"
"Source Code" = "https://github.com/WeblateOrg/translation-finder"
Twitter = "https://twitter.com/WeblateOrg"
[tool.check-manifest]
ignore = [
"LICENSES/*",
"json/*",
".reuse/dep5",
"scripts/*",
"*.toml",
"*.yml",
"*.yaml",
"*.json",
".editorconfig",
".weblate",
"weblate-discovery",
# Symlink causes issues
"translation_finder/test_data/linked",
"translation_finder/test_data/linked/*"
]
[tool.check-wheel-contents]
ignore = [
"W002" # Duplicate test files
]
[tool.pytest.ini_options]
doctest_optionflags = "NORMALIZE_WHITESPACE ALLOW_UNICODE"
[tool.ruff.lint]
extend-safe-fixes = [
"D",
"TCH",
"FLY",
"SIM",
"ANN",
"FA102",
"UP"
]
ignore = [
"CPY001", # TODO: copyright notices
"COM", # CONFIG: No trailing commas
"PT", # CONFIG: Not using pytest
"D10", # TODO: we are missing many docstrings
"D203", # CONFIG: incompatible with D211
"D212", # CONFIG: incompatible with D213
"D401", # TODO: many strings need rephrasing
'ISC001', # CONFIG: formatter
"FBT001", # TODO
"FBT002", # TODO
"PLW1641", # TODO
"ARG004", # TODO
"PTH", # TODO: Not using pathlib
"ARG002", # TODO: Unused method argument (mostly for API compatibility)
"DOC", # TODO: Ignore all pydoclint rules for now
"PLR6301", # TODO: Method could be a function, class method, or static method
"RUF012", # TODO: Mutable class attributes should be annotated with `typing.ClassVar`
"E501", # WONTFIX: we accept long strings (rest is formatted by black)
"PLW2901" # TODO: overwriting variables inside loop
]
preview = true
select = ["ALL"]
[tool.ruff.lint.mccabe]
max-complexity = 16
[tool.ruff.lint.per-file-ignores]
"translation_finder/test_*.py" = ["S301", "S403", "ANN"]
[tool.setuptools]
include-package-data = true
license-files = [
"LICENSE"
]
packages = [
"translation_finder",
"translation_finder.discovery"
]
platforms = [
"any"
]
[tool.setuptools.package-dir]
translation_finder = "translation_finder"