-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
96 lines (82 loc) · 2.41 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[metadata]
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
name = flake8_qgis
author = Joona Laine
author_email = [email protected]
maintainer = Joona Laine
maintainer_email = [email protected]
version = 0.1.4
description = Flake8 plugin for QGIS python plugins.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = flake8,qgis,QGIS,PyQGIS
url = https://github.com/GispoCoding/flake8-qgis
license = MIT license
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
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
Framework :: Flake8
[options]
packages = find:
python_requires = >=3.6.1
install_requires =
flake8>=3.7
importlib-metadata>=0.9;python_version<"3.8"
astor>=0.1
[options.package_data]
* =
py.typed
[options.entry_points]
flake8.extension =
QGS=flake8_qgis:Plugin
[tool:pytest]
doctest_encoding = utf-8
[pydocstyle]
match_dir = flake8_qgis
ignore = D104, D105, D107, D301, D413, D203, D212, D100
[flake8]
max_line_length = 88
per-file-ignores =
tests/*:ANN001,ANN201,N802,ASS001
extend-ignore =
# whitespace before ':'
E203,
# Missing type annotation for self in method
ANN101,
# fixture '{name}' does not return anything, add leading underscore
PT004
[isort]
import_heading_stdlib=Core Library modules
import_heading_thirdparty=Third party modules
import_heading_firstparty=First party modules
import_heading_localfolder=Local modules
include_trailing_comma=True
indent=' '
known_third_party = click,pytest,setuptools
length_sort=0
line_length=80
multi_line_output=3
[mypy]
ignore_missing_imports=true
check_untyped_defs=true
disallow_untyped_defs=false
warn_unused_ignores=true
strict_optional=true
warn_redundant_casts=true
warn_unused_configs=true
disallow_untyped_calls=false
disallow_incomplete_defs=true
follow_imports=skip
mypy_path=typeshed/pyi:typeshed/imports