-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
63 lines (59 loc) · 2.04 KB
/
setup.cfg
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
[metadata]
name = locale_lint
version = 0.2.2
description = Weblate Locale Linter
long_description = file: README.md
long_description_content_type = text/markdown
url = https://weblate.org/
author = Michal Čihař
author_email = [email protected]
license = GPL-3.0-or-later
license_file = LICENSE
platforms = any
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
Topic :: Software Development :: Internationalization
Topic :: Software Development :: Localization
Topic :: Utilities
download_url = https://github.com/WeblateOrg/locale_lint
keywords = i18n l10n gettext git mercurial translate
project_urls =
Issue Tracker=https://github.com/WeblateOrg/locale_lint/issues
Documentation=https://docs.weblate.org/
Source Code=https://github.com/WeblateOrg/locale_lint
Twitter=https://twitter.com/WeblateOrg
Funding=https://weblate.org/donate/
[options]
packages = locale_lint
python_requires = >=3.9
package_dir = locale_lint=locale_lint
include_package_data = 1
[options.entry_points]
console_scripts =
locale_lint = locale_lint.cli:locale_lint
[flake8]
max-complexity = 16
extend-select = E,W1,W2,W3,W504,W505,W6
enable-extensions = B,C,D,F,G,I,M,N,R,SF
# Should be fixed:
# D10 - we are missing many docstrings
# D20* - wrong docstring formatting
# D40* - many strings need rephrasing
# N818 - we do not want all exceptions to end up their name with Error
extend-ignore = D10,D200,D202,D204,D205,D209,D401,N818
exclude = .git,docs,.venv,build,.eggs
max-line-length = 88
[pycodestyle]
extend-select = E,W1,W2,W3,W504,W505,W6
exclude = .git,docs,.venv,build,.eggs
max-line-length = 88