-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
145 lines (130 loc) · 3.04 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
[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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Utilities"
]
dependencies = [
"argcomplete",
"python-dateutil",
"pyxdg",
"requests>=2.25.0",
"urllib3>=1.26"
]
description = "A command-line utility for Weblate, translation tool with tight version control integration"
dynamic = ["version"]
keywords = [
"i18n",
"l10n",
"gettext",
"git",
"mercurial",
"translate"
]
name = "wlc"
requires-python = ">=3.8"
[[project.authors]]
email = "[email protected]"
name = "Michal Čihař"
[project.license]
text = "GPL-3.0-or-later"
[project.optional-dependencies]
lint = ["pre-commit==4.0.1"]
test = [
"pytest",
"pytest-cov",
"responses>=0.10.1,<0.26.0",
"build==1.2.2.post1",
"twine==5.1.1"
]
[project.readme]
content-type = "text/markdown"
file = "README.md"
[project.scripts]
wlc = "wlc.main:main"
[project.urls]
Documentation = "https://docs.weblate.org/"
Download = "https://github.com/WeblateOrg/wlc"
Funding = "https://weblate.org/donate/"
Homepage = "https://weblate.org/"
"Issue Tracker" = "https://github.com/WeblateOrg/wlc/issues"
"Source Code" = "https://github.com/WeblateOrg/wlc"
Twitter = "https://twitter.com/WeblateOrg"
[tool.isort]
profile = "black"
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
ignore = [
"D10", # TODO: we are missing many docstrings
"D203", # CONFIG: incompatible with D211
"D212", # CONFIG: incompatible with D213
"D401", # TODO: many strings need rephrasing
"T201", # WONTFIX: using print() (maybe add noqa)
"TRY003", # WONTFIX: Avoid specifying long messages outside the exception class
"PLR0913", # WONTFIX: Too many arguments to function call
"PLR2004", # TODO: Magic value used in comparison, consider replacing 201 with a constant variable
"N818" # TODO: exception naming
]
select = [
"E",
"F",
"B",
"T10",
"A",
"C4",
"C90",
"YTT",
"DJ",
"UP",
"D",
"PD",
"PGH",
"PL",
"TRY",
"RUF",
"ERA",
"ICN",
"ISC",
"EXE",
"INP",
"PIE",
"G",
"PYI",
"Q",
"SIM",
"TID",
"RSE",
"T20",
"RET",
"SLF",
"N"
]
[tool.ruff.lint.mccabe]
max-complexity = 16
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
platforms = ["any"]
[tool.setuptools.dynamic.version]
attr = "wlc.__version__"
[tool.setuptools.package-dir]
wlc = "wlc"
[tool.setuptools.packages.find]
include = ["wlc*"]
namespaces = true