-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (58 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (58 loc) · 1.73 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
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"
[project]
name = "pytest-ty"
description = "A pytest plugin to run the ty type checker"
version = "0.2.1"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Raphael Boidol", email = "pytest-ty@boidol.dev" }]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
]
dependencies = ["pytest>=7.0.0", "ty>=0.0.2"]
[dependency-groups]
dev = [
"pytest",
"pytest-cov>=7.0.0",
]
[project.urls]
Repository = "https://github.com/boidolr/pytest-ty"
[project.entry-points.pytest11]
ty = "pytest_ty.plugin"
[tool.pytest.ini_options]
addopts = "--cov pytest_ty"
filterwarnings = ["error"]
[tool.coverage.run]
disable_warnings = ["module-not-measured"]
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ARG001", "COM812", "D"]
[tool.ruff.lint.per-file-ignores]
"src/pytest_ty/plugin.py" = ["PT013"]
"tests/*.py" = ["S101"]
[tool.ruff.lint.flake8-annotations]
ignore-fully-untyped = true
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false