-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
57 lines (54 loc) · 2 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
[metadata]
name = wllegal
version = 2024.2
description = Hosted Weblate legal stuff
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
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
Intended Audience :: System Administrators
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 :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
download_url = https://github.com/WeblateOrg/wllegal
keywords = i18n l10n gettext git mercurial translate
project_urls =
Issue Tracker=https://github.com/WeblateOrg/wllegal/issues
Documentation=https://docs.weblate.org/
Source Code=https://github.com/WeblateOrg/wllegal
Twitter=https://twitter.com/WeblateOrg
[options]
packages = wllegal
python_requires = >=3.9
include_package_data = 1
package_dir = wllegal=wllegal
[flake8]
max-complexity = 16
extend-select = E,W1,W2,W3,W504,W505,W6
enable-extensions = B,C,D,DJ,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,D400,D401,DJ01,DJ02,T201
exclude = migrations,settings.py,settings_test.py,.git,data,data-test,settings_test_nose.py,docs,.venv,build,node_modules
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
max-line-length = 88