-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.31 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
48
49
50
51
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "flake8_comments"
dist-name = "flake8-comments"
author = "Gram"
author-email = "gram@orsinium.dev"
home-page = "https://github.com/orsinium-labs/flake8-comments"
license = "MIT"
keywords = "flake8 flake8-plugin linter styleguide code quality"
requires = ["flake8"]
requires-python = ">=3.6"
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 :: MIT License",
]
[tool.flit.metadata.requires-extra]
test = ["pytest", "pytest-cov"]
[tool.flit.entrypoints."flake8.extension"]
CM00 = "flake8_comments:Checker"
[tool.isort]
line_length = 90
combine_as_imports = true
balanced_wrapping = true
lines_after_imports = 2
skip = "venvs/"
multi_line_output = 5
include_trailing_comma = true
[tool.pytest.ini_options]
addopts = [
"--cov=flake8_comments",
"--cov-report=html",
"--cov-report=xml",
"--cov-report=term-missing:skip-covered",
"--cov-fail-under=80",
]
[tool.coverage.run]
branch = true