-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "whistle"
version = "2.1.4"
description = "Event dispatcher (see python-whistle.readthedocs.io)."
authors = [
{name = "Romain Dorgueil", email = "romain@makersquad.fr"}
]
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = []
[dependency-groups]
dev = [
"coverage>=7,<8",
"furo>=2025,<2026",
"pre-commit>=4,<5",
"pytest-asyncio>=1.2,<1.3",
"pytest-benchmark>=5.1,<6",
"pytest-cov>=7,<8",
"pytest>=8,<9",
"ruff>=0.14,<0.15",
"sphinx-autobuild>=2024,<2026",
"sphinx-copybutton>=0.5,<0.6",
"sphinx-design>=0.6,<0.7",
"sphinx-sitemap>=2.9,<3",
"sphinx>=8,<9",
"sphinxcontrib-jquery>=4.1,<4.2",
]
[tool.uv]
default-groups = ["dev"]
[tool.ruff]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
ignore = ["F403"] # Allow star imports for public API exposure
[tool.ruff.lint.isort]
known-first-party = ["whistle"]
[tool.pytest.ini_options]
asyncio_mode = "auto"