-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
83 lines (69 loc) · 2.08 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
[metadata]
# https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
name = flake8_scream
author = Martin Thoma
author_email = [email protected]
maintainer = Martin Thoma
maintainer_email = [email protected]
version = 0.1.0
description = flake8 plugin which checks for code that can be simplified
long_description = file: README.md
long_description_content_type = text/markdown
keywords = flake8,
url = https://github.com/MartinThoma/flake8-scream
license = MIT
license_file = LICENSE
# https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
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
Topic :: Software Development
Framework :: Flake8
[options]
python_requires = >=3.6.1
install_requires =
flake8>=3.7
flake8_simplify>=0.18.2
importlib-metadata>=0.9;python_version<"3.8"
astor>=0.1
[options.entry_points]
flake8.extension =
SCR=flake8_scream:Plugin
[tool:pytest]
addopts = --doctest-modules --cov=. --cov-report html:tests/reports/coverage-html --cov-report term-missing --ignore=docs/ --durations=3 --timeout=30
doctest_encoding = utf-8
[mutmut]
backup = False
runner = ./mutmut-test.sh
tests_dir = tests/
paths_to_mutate=flake8_scream.py
[mypy]
exclude = build/lib/flake8_scream.py
ignore_missing_imports = true
strict = true
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = false
show_error_codes = true
[mypy-testing.*]
disallow_untyped_defs = false
[mypy-tests.*]
disallow_untyped_defs = false
[flake8]
ignore = E203, W503, PT007
exclude = build/*
per-file-ignores =
tests/*: ASS001