-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (78 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
92 lines (78 loc) · 2.32 KB
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
87
88
89
90
91
92
[project]
name = "flake8-pytest-style"
version = "2.2.0"
description = "A flake8 plugin checking common style issues or inconsistencies with pytest-based tests."
authors = [
{ name = "Mikhail Burshteyn", email = "mdburshteyn@gmail.com" },
]
license = "MIT"
readme = 'README.md'
keywords = ["flake8", "pytest"]
dynamic = [
"classifiers",
"dependencies",
]
requires-python = ">=3.10"
[project.urls]
repository = "https://github.com/m-burst/flake8-pytest-style"
homepage = "https://pypi.org/project/flake8-pytest-style"
[tool.poetry]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Plugins",
"Framework :: Flake8",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
]
[project.entry-points."flake8.extension"]
PT = 'flake8_pytest_style.plugin:PytestStylePlugin'
[tool.poetry.dependencies]
python = "^3.10"
flake8-plugin-utils = "^1.3.2"
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
bump2version = "^1.0.1"
mypy = ">=1.20.1"
pylint = "^4.0.5"
pytest = "^9.0.3"
pytest-cov = "^7.1.0"
pytest-deadfixtures = "^3.1"
flake8 = "^7.3.0"
pytest-mock = "^3.15.1"
tomlkit = ">=0.12.1,<0.15.0"
# The below group is taken from flake8-awesome with some exclusions
# that are irrelevant or unsupported.
# TODO remove Python version restriction after Bandit supports 3.14
# https://github.com/PyCQA/bandit/issues/1314
flake8-bandit = {version = "*", python="<3.14"}
flake8-breakpoint = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-comprehensions = "*"
flake8-eradicate = "*"
flake8-if-expr = "*"
flake8-isort = "*"
flake8-print = "*"
flake8-requirements = "*"
pep8-naming = "*"
# broken on 3.14+
# flake8-annotations-complexity = "*"
# broken on 3.14+
# flake8-expression-complexity = "*"
# kinda broken on 3.12+ (needs pkg_resources), not needed here
# flake8-logging-format = "*"
# functionality implemented in this plugin
# flake8-pytest = "*"
# actually this plugin
# flake8-pytest-style = "*"
# broken on 3.14+, and probably not needed with mypy
# flake8-return = "*"
# end of flake8-awesome
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"