forked from WeblateOrg/language-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
74 lines (69 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
[metadata]
name = weblate-language-data
version = 2023.1
description = Language definitions for Weblate
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://weblate.org/
author = Michal Čihař
author_email = [email protected]
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Internationalization
Topic :: Software Development :: Localization
Topic :: Utilities
download_url = https://github.com/WeblateOrg/language-data
keywords = i18n l10n gettext git mercurial translate
project_urls =
Issue Tracker=https://github.com/WeblateOrg/language-data/issues
Documentation=https://docs.weblate.org/
Source Code=https://github.com/WeblateOrg/language-data
Twitter=https://twitter.com/WeblateOrg
Funding=https://weblate.org/donate/
[options]
packages = weblate_language_data
python_requires = >=3.7
include_package_data = 1
package_dir = weblate_language_data=weblate_language_data
[options.extras_require]
django = Django
[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
extend-ignore = D10,D200,D202,D204,D205,D209,D401,T201,T203
exclude = .git,docs,.venv,build,.eggs
max-line-length = 88
per-file-ignores =
weblate_language_data/languages.py:E501
weblate_language_data/plurals.py:E501
[pycodestyle]
extend-select = E,W1,W2,W3,W504,W505,W6
exclude = .git,docs,.venv,build,.eggs
max-line-length = 88
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
known_first_party = weblate_language_data
known_third_party = xdg,responses,requests,dateutil,requests_toolbelt,argcomplete