-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
78 lines (66 loc) · 1.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alt-pytest-asyncio"
dynamic = ["version"]
description = "Alternative pytest plugin to pytest-asyncio"
readme = "README.rst"
license = { text = "MIT" }
requires-python = ">= 3.11"
authors = [
{ name = "Stephen Moore", email = "[email protected]" },
]
classifiers = [
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
]
dependencies = [
"pytest >= 8.0.0",
]
[project.entry-points.pytest11]
alt_pytest_asyncio = "alt_pytest_asyncio.plugin"
[project.urls]
Homepage = "https://github.com/delfick/alt-pytest-asyncio"
[project.optional-dependencies]
dev = [
"tools",
"alt_pytest_asyncio_test_driver"
]
tools = [
"tools",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "alt_pytest_asyncio/version.py"
[tool.hatch.build.targets.wheel]
include = [
"/alt_pytest_asyncio",
]
[tool.hatch.build.targets.sdist]
include = [
"/alt_pytest_asyncio",
]
[tool.uv.sources]
tools = { workspace = true }
alt_pytest_asyncio_test_driver = { workspace = true }
[tool.uv.workspace]
members = ["tools", "helpers"]
[tool.ruff]
target-version = "py311"
line-length = 99
extend-exclude = [
".DS_Store",
"tools/.bootstrap-venv",
"__pycache__",
]
[tool.ruff.lint]
select = [
"B008", # mutable objects as function argument defaults
"B015", # flake8-bugbear (useless-comparison)
"I", # isort
"UP", # pyupgrade
"RUF",
"F",
]