-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
60 lines (56 loc) · 2.14 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
[metadata]
name = translation-finder
version = 2.17
description = A translation file finder used in 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 = 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
Topic :: Software Development :: Internationalization
Topic :: Software Development :: Localization
Topic :: Utilities
download_url = https://github.com/WeblateOrg/translation-finder
keywords = i18n l10n gettext translate
project_urls =
Issue Tracker=https://github.com/WeblateOrg/translation-finder/issues
Documentation=https://docs.weblate.org/
Source Code=https://github.com/WeblateOrg/translation-finder
Twitter=https://twitter.com/WeblateOrg
Funding=https://weblate.org/donate/
[options]
packages = translation_finder,translation_finder.discovery
python_requires = >=3.9
package_dir = translation_finder=translation_finder
include_package_data = 1
[options.entry_points]
console_scripts =
weblate-discover = translation_finder.api:cli
[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
# False positives:
# E203 - see https://github.com/python/black/issues/544
extend-ignore = D10,D200,D202,D204,D205,D209,D401,E203,T201
exclude = migrations,settings.py,settings_test.py,.git,data,data-test,settings_test_nose.py,docs,.venv,build,node_modules,.eggs
max-line-length = 88
[pycodestyle]
extend-select = E,W1,W2,W3,W504,W505,W6
exclude = migrations,settings.py,settings_test.py,.git,data,data-test,settings_test_nose.py,docs,.venv,build,node_modules,.eggs
max-line-length = 88