-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (52 loc) · 1.69 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pytest-vulture"
version = "2.2.2"
description = "A pytest plugin to checks dead code with vulture"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "MIT"}
keywords = ["pytest", "vulture", "dead code", "testing", "code analysis"]
authors = [
{name = "Abadie Moran", email = "moran.abadie@gatewatcher.com"},
]
maintainers = [
{name = "Abadie Moran", email = "moran.abadie@gatewatcher.com"},
]
classifiers = [
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
]
dependencies = [
"vulture>=2.0,<3.0",
"pytest>=7.0.0",
]
[project.urls]
"Homepage" = "https://github.com/Gatewatcher/pytest-vulture/"
"Bug Reports" = "https://github.com/Gatewatcher/pytest-vulture/issues"
"Source" = "https://github.com/Gatewatcher/pytest-vulture/"
[project.entry-points.pytest11]
vulture = "pytest_vulture.plugin"
[tool.mypy]
warn_unused_ignores = true
strict_optional = true
incremental = true
ignore_missing_imports = true
check_untyped_defs = true
warn_no_return = true
warn_return_any = true
no_implicit_optional = true