-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.35 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "click-type-test"
version = "1.1.0"
description = "Test that type annotations match click parameter types"
readme = "README.md"
requires-python = ">=3.10"
license = { "text" = "MIT" }
keywords = []
authors = [
{ name = "Stephen Rosen", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = ["click>=8"]
[project.urls]
source = "https://github.com/sirosen/click-type-test"
[tool.coverage.run]
parallel = true
source = ["click_type_test"]
[tool.coverage.report]
show_missing = true
skip_covered = true
exclude_lines = [
# the pragma to disable coverage
"pragma: no cover",
# don't complain if tests don't hit unimplemented methods/modes
"raise NotImplementedError",
# don't check on executable components of importable modules
"if __name__ == .__main__.:",
# mypy-only code segments
"if t.TYPE_CHECKING:",
# type-checking overloads
"@t.overload"
]
[tool.isort]
profile = "black"
[tool.mypy]
strict = true