-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (42 loc) · 1.28 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "flake8_todos"
dist-name = "flake8-todos"
author = "Gram"
author-email = "[email protected]"
home-page = "https://github.com/orsinium-labs/flake8-todos"
license = "BSD 3-Clause"
keywords = "flake8 flake8-plugin linter styleguide code quality"
requires = ["flake8", "pycodestyle"]
requires-python = ">=3.8"
description-file = "README.md"
classifiers = [
"Development Status :: 4 - Beta", "Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: BSD License",
]
[tool.flit.metadata.requires-extra]
dev = ["isort[pyproject]", "pytest"]
[tool.flit.entrypoints."flake8.extension"]
T00 = "flake8_todos:Checker"
[tool.mypy]
files = ["mypy_baseline"]
python_version = 3.8
ignore_missing_imports = true
# follow_imports = "silent"
show_error_codes = true
check_untyped_defs = true
no_implicit_optional = true
strict_equality = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.isort]
profile = "django"
lines_after_imports = 2
skip = ".venvs/"