generated from readthedocs/tutorial-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (76 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
84 lines (76 loc) · 1.59 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
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
79
80
81
82
83
84
[project]
name = "minestrone"
version = "0.9.0"
description = "Search, modify, and parse messy HTML with ease."
authors = [{ name = "adamghill", email = "adam@adamghill.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["python", "html", "beautifulsoup"]
dependencies = [
"selectolax",
]
[project.urls]
Homepage = "https://github.com/adamghill/minestrone/"
Repository = "https://github.com/adamghill/minestrone/"
Documentation = "http://minestrone.readthedocs.io/"
Funding = "https://github.com/sponsors/adamghill"
[dependency-groups]
dev = [
"pytest>=6",
"sphinx-autobuild>=2021.3.14",
"ty",
"coverage[toml]>=6.2",
"pytest-cov>=3",
"ruff",
"pytest-benchmark>=4.0.0",
"typeguard",
"toml",
]
docs = [
"Sphinx>=4.3.2",
"linkify-it-py>=1.0.3",
"myst-parser>=0.16.1",
"furo>=2021.11.23",
"sphinx-copybutton>=0.4.0",
"attrs>=21.4.0",
"toml",
]
[tool.pytest]
addopts = ["--quiet", "--failed-first", "-p", "no:warnings", "--benchmark-skip", "--typeguard-packages=minestrone"]
testpaths = ["tests"]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "D"]
ignore = [
"E501",
"D101",
"D102",
"D103",
"D105",
"D106",
"D202",
"D203",
"D204",
"D213",
"D215",
"D400",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
"D100",
]
[tool.coverage.run]
branch = true
parallel = true
[tool.coverage.report]
show_missing = true
skip_covered = true
skip_empty = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"