-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
52 lines (46 loc) · 1.15 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
52
[tool.poetry]
name = "pylint-plugin-utils"
version = "0.8.2"
readme = "README.md"
description = "Utilities and helpers for writing Pylint plugins"
repository = "https://github.com/PyCQA/pylint-plugin-utils"
authors = ["Carl Crowder <[email protected]>"]
license="GPL-2.0-or-later"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Quality Assurance",
]
keywords=["pylint","plugin","helpers"]
packages = [
{include = "pylint_plugin_utils/"}
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
pylint = ">=1.7"
[tool.poetry.group.dev.dependencies]
pytest = "~6.2"
pre-commit = "~2.16"
pytest-cov = "~3.0"
coveralls = "~3.3"
tox = "^4.5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
python_files = ["tests.py","test_*.py","*_tests.py","tests/*.py"]
[tool.black]
line-length = 120
exclude = '''
/(
tests/
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120