-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (63 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "flake8-no-pytest-mark-only"
version = "1.0.0"
description = "Flake8 plugin to disallow the use of the pytest.mark.only decorator."
readme = "README.md"
license = {text = "Apache Software License"}
authors = [
{ name = "František Nesveda", email = "[email protected]" },
]
keywords = ["flake8", "pytest", "mark", "only"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
dependencies = [
]
[project.optional-dependencies]
dev = [
"autopep8 ~= 2.0.4",
"build ~= 1.0.0",
"flake8 ~= 6.1.0",
"flake8-bugbear ~= 23.7.10",
"flake8-commas ~= 2.1.0",
"flake8-comprehensions ~= 3.14.0",
"flake8-docstrings ~= 1.7.0",
"flake8-isort ~= 6.0.0",
"flake8-noqa ~= 1.3.2",
"flake8-pytest-style ~= 1.7.2",
"flake8-quotes ~= 3.3.2",
"flake8-simplify ~= 0.20.0",
"flake8-unused-arguments ~= 0.0.13",
"isort ~= 5.12.0",
"mypy ~= 1.5.1",
"pep8-naming ~= 0.13.3",
"pre-commit ~= 3.4.0",
"pytest ~= 7.4.1",
"pytest-only ~= 2.0.0",
"twine ~= 4.0.2",
]
[project.entry-points."flake8.extension"]
PNO = "flake8_no_pytest_mark_only.plugin:Flake8NoPytestMarkOnly"
[project.urls]
"Homepage" = "https://www.nesveda/com/projects/flake8-no-pytest-mark-only"
"Documentation" = "https://github.com/fnesveda/flake8-no-pytest-mark-only"
"Source" = "https://github.com/fnesveda/flake8-no-pytest-mark-only"
"Issue tracker" = "https://github.com/fnesveda/flake8-no-pytest-mark-only/issues"
"Changelog" = "https://github.com/fnesveda/flake8-no-pytest-mark-only/blob/master/CHANGELOG.md"
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["flake8_no_pytest_mark_only*"]
[tool.setuptools.package-data]
flake8_no_pytest_mark_only = ["py.typed"]