-
Notifications
You must be signed in to change notification settings - Fork 99
/
setup.cfg
86 lines (72 loc) · 1.94 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
[wheel]
python-tag = py3
[metadata]
name = pylama
version = attr: pylama.__version__
url = https://github.com/klen/pylama
description = Code audit tool for python
long_description = file: README.rst
author = Kirill Klenov
author_email = [email protected]
license = MIT
license_files = LICENSE
keywords = qa, linter, pydocstyle, pycodestyle, mccabe, pylint
project_urls =
Documentation = https://klen.github.io/pylama
Source code = https://github.com/klen/pylama
Issue tracker = https://github.com/klen/pylama/issues
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
[options]
packages = pylama
python_requires = >= 3.7
include_package_data = True
[options.package_data]
pylama =
py.typed
[options.entry_points]
console_scripts =
pylama = pylama.main:shell
pytest11 =
pylama = pylama.pytest
[tool:pytest]
addopts = -xsv
[pylama]
async = 1
ignore = D203,D213,F0401,C0111,E731,I0011
linters = pycodestyle,pyflakes,mccabe,pydocstyle,pylint,mypy
skip = pylama/inirama.py,pylama/libs/*
verbose = 0
max_line_length = 100
[pylama:pyflakes]
builtins = _
[pylama:pylint]
ignore=R,E1002,W0511,C0103,C0204,W0012
[pylama:pylama/core.py]
ignore = C901,R0914
[pylama:pylama/main.py]
ignore = R0914,W0212,C901,E1103
[pylama:tests/*]
ignore = D,C,W,E1103
[mypy]
ignore_missing_imports = True
[tox:tox]
envlist = py37,py38,py39,py310
[testenv]
deps = -e .[tests]
commands=
pylama pylama
pytest --pylama pylama {posargs}
pytest tests -s {posargs}