-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.39 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
[tool.pytest.ini_options]
addopts = [ "--pdbcls=IPython.terminal.debugger:TerminalPdb" ]
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[tool.hatch.build.targets.wheel]
packages = [ "timeout_sampler" ]
[tool.uv]
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.18.1" ]
[project]
name = "timeout-sampler"
version = "1.0.8"
description = "Timeout utility class to wait for any function output and interact with it in given time"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [ "pytest>=8.3.4", "python-simple-logger>=2.0.2" ]
[[project.authors]]
name = "Meni Yakove"
email = " myakove@gmail.com"
[project.urls]
homepage = "https://github.com/RedHatQE/timeout-sampler"
repository = "https://github.com/RedHatQE/timeout-sampler"
Download = "https://pypi.org/project/timeout-sampler"
"Bug Tracker" = "https://github.com/RedHatQE/timeout-sampler/issues"
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"