-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.56 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
[project]
name = "pytest-annotated"
version = "0.1.1"
description = "Pytest plugin to allow use of Annotated in tests to resolve fixtures"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Tristan King", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pytest>=8.3.3",
]
[project.entry-points.pytest11]
pytest_annotated = "pytest_annotated"
[project.urls]
Homepage = "https://github.com/tristan/pytest-annotated"
Issues = "https://github.com/tristan/pytest-annotated/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"ruff>=0.6.8",
]
[tool.ruff.lint]
ignore = ["E501"]
select = [
"E", # pycodestyle error https://docs.astral.sh/ruff/rules/#error-e
"F", # pyflakes https://docs.astral.sh/ruff/rules/#pyflakes-f
"G", # flake8-logging-formate https://docs.astral.sh/ruff/rules/#flake8-logging-format-g
"I", # isort https://docs.astral.sh/ruff/rules/#isort-i
"ISC", # flake8-implicit-str-concat https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc
"PIE", # flake8-pie https://docs.astral.sh/ruff/rules/#flake8-pie-pie
"TID", # flake8-tidy-imports https://docs.astral.sh/ruff/rules/#flake8-tidy-imports-tid
"UP", # pyupgrade https://docs.astral.sh/ruff/rules/#pyupgrade-up
"W", # pycodestyle warning https://docs.astral.sh/ruff/rules/#warning-w
]